svn commit: r314455 - head/usr.sbin/rpc.statd

Ngie Cooper ngie at FreeBSD.org
Wed Mar 1 04:13:33 UTC 2017


Author: ngie
Date: Wed Mar  1 04:13:31 2017
New Revision: 314455
URL: https://svnweb.freebsd.org/changeset/base/314455

Log:
  Use .ALLSRC instead of RPCSRC
  
  This is a trivial simplification in the Makefile, meant to serve as
  a good example for what to do with rules like this.
  
  MFC after:	1 week
  Sponsored by:	Dell EMC Isilon

Modified:
  head/usr.sbin/rpc.statd/Makefile

Modified: head/usr.sbin/rpc.statd/Makefile
==============================================================================
--- head/usr.sbin/rpc.statd/Makefile	Wed Mar  1 04:12:24 2017	(r314454)
+++ head/usr.sbin/rpc.statd/Makefile	Wed Mar  1 04:13:31 2017	(r314455)
@@ -15,10 +15,10 @@ RPCSRC= ${DESTDIR}/usr/include/rpcsvc/sm
 RPCGEN= RPCGEN_CPP=${CPP:Q} rpcgen -L -C
 
 sm_inter_svc.c: ${RPCSRC}
-	${RPCGEN} -m -o ${.TARGET} ${RPCSRC}
+	${RPCGEN} -m -o ${.TARGET} ${.ALLSRC}
 
 sm_inter.h: ${RPCSRC}
-	${RPCGEN} -h -o ${.TARGET} ${RPCSRC}
+	${RPCGEN} -h -o ${.TARGET} ${.ALLSRC}
 
 test: test.c
 	cc -o test test.c -lrpcsvc


More information about the svn-src-all mailing list