svn commit: r288200 - in head/kerberos5: libexec/kdigest usr.bin/hxtool usr.bin/kadmin usr.bin/kcc usr.sbin/iprop-log

Bryan Drewery bdrewery at FreeBSD.org
Thu Sep 24 23:24:01 UTC 2015


Author: bdrewery
Date: Thu Sep 24 23:23:58 2015
New Revision: 288200
URL: https://svnweb.freebsd.org/changeset/base/288200

Log:
  Remove unneeded dependency of '.o: .h' that bsd.prog.mk already handles.
  
  MFC after:	2 weeks
  X-MFC-With:	r288198
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/kerberos5/libexec/kdigest/Makefile
  head/kerberos5/usr.bin/hxtool/Makefile
  head/kerberos5/usr.bin/kadmin/Makefile
  head/kerberos5/usr.bin/kcc/Makefile
  head/kerberos5/usr.sbin/iprop-log/Makefile

Modified: head/kerberos5/libexec/kdigest/Makefile
==============================================================================
--- head/kerberos5/libexec/kdigest/Makefile	Thu Sep 24 23:15:24 2015	(r288199)
+++ head/kerberos5/libexec/kdigest/Makefile	Thu Sep 24 23:23:58 2015	(r288200)
@@ -15,9 +15,7 @@ CLEANFILES=	kdigest-commands.h kdigest-c
 kdigest-commands.h: kdigest-commands.in
 	${SLC} ${.ALLSRC:M*.in}
 
-.for ext in c o
-kdigest-commands.${ext}: kdigest-commands.h
-.endfor
+kdigest-commands.c: kdigest-commands.h
 
 .include <bsd.prog.mk>
 

Modified: head/kerberos5/usr.bin/hxtool/Makefile
==============================================================================
--- head/kerberos5/usr.bin/hxtool/Makefile	Thu Sep 24 23:15:24 2015	(r288199)
+++ head/kerberos5/usr.bin/hxtool/Makefile	Thu Sep 24 23:23:58 2015	(r288200)
@@ -14,9 +14,7 @@ CLEANFILES=	hxtool-commands.h hxtool-com
 hxtool-commands.h: hxtool-commands.in
 	${SLC} ${.ALLSRC:M*.in}
 
-.for ext in c o
-hxtool-commands.${ext}: hxtool-commands.h
-.endfor
+hxtool-commands.c: hxtool-commands.h
 
 .include <bsd.prog.mk>
 

Modified: head/kerberos5/usr.bin/kadmin/Makefile
==============================================================================
--- head/kerberos5/usr.bin/kadmin/Makefile	Thu Sep 24 23:15:24 2015	(r288199)
+++ head/kerberos5/usr.bin/kadmin/Makefile	Thu Sep 24 23:23:58 2015	(r288200)
@@ -38,9 +38,7 @@ CLEANFILES=	kadmin-commands.h kadmin-com
 kadmin-commands.h: ${KRB5DIR}/kadmin/kadmin-commands.in
 	${SLC} ${.ALLSRC:M*.in}
 
-.for ext in o c
-kadmin-commands.${ext}: kadmin-commands.h
-.endfor
+kadmin-commands.c: kadmin-commands.h
 
 .PATH: ${KRB5DIR}/kadmin
 

Modified: head/kerberos5/usr.bin/kcc/Makefile
==============================================================================
--- head/kerberos5/usr.bin/kcc/Makefile	Thu Sep 24 23:15:24 2015	(r288199)
+++ head/kerberos5/usr.bin/kcc/Makefile	Thu Sep 24 23:23:58 2015	(r288200)
@@ -21,9 +21,7 @@ CLEANFILES=	kcc-commands.h kcc-commands.
 kcc-commands.h: kcc-commands.in
 	${SLC} ${.ALLSRC:M*.in}
 
-.for ext in c o
-kcc-commands.${ext}: kcc-commands.h
-.endfor
+kcc-commands.c: kcc-commands.h
 
 .include <bsd.prog.mk>
 

Modified: head/kerberos5/usr.sbin/iprop-log/Makefile
==============================================================================
--- head/kerberos5/usr.sbin/iprop-log/Makefile	Thu Sep 24 23:15:24 2015	(r288199)
+++ head/kerberos5/usr.sbin/iprop-log/Makefile	Thu Sep 24 23:23:58 2015	(r288200)
@@ -16,9 +16,7 @@ CLEANFILES=	iprop-commands.h iprop-comma
 iprop-commands.h: iprop-commands.in
 	${SLC} ${.ALLSRC:M*.in}
 
-.for ext in c o
-iprop-commands.${ext}: iprop-commands.h
-.endfor
+iprop-commands.c: iprop-commands.h
 
 .include <bsd.prog.mk>
 


More information about the svn-src-all mailing list