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
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to