svn commit: r295648 - head/usr.sbin/amd/include

Bryan Drewery bdrewery at FreeBSD.org
Tue Feb 16 02:14:23 UTC 2016


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}


More information about the svn-src-head mailing list