Date: Tue, 16 Feb 2016 02:14:22 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r295648 - head/usr.sbin/amd/include Message-ID: <201602160214.u1G2EMVd011229@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Tue Feb 16 02:14:21 2016 New Revision: 295648 URL: https://svnweb.freebsd.org/changeset/base/295648 Log: Remove the need for overriding depend. Sponsored by: EMC / Isilon Storage Division Modified: head/usr.sbin/amd/include/Makefile Modified: head/usr.sbin/amd/include/Makefile ============================================================================== --- head/usr.sbin/amd/include/Makefile Tue Feb 16 02:14:18 2016 (r295647) +++ head/usr.sbin/amd/include/Makefile Tue Feb 16 02:14:21 2016 (r295648) @@ -9,13 +9,13 @@ .include <src.opts.mk> -SRCS= config_local.h +HDRS= config_local.h .if ${MK_NIS} == "no" -SRCS+= localconfig.h +HDRS+= localconfig.h .endif -CLEANFILES= ${SRCS} +CLEANFILES= ${HDRS} -all depend: ${SRCS} +all: ${HDRS} config_local.h: newvers.sh ${.CURDIR}/../../../sys/conf/newvers.sh @rm -f ${.TARGET}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602160214.u1G2EMVd011229>