diff options
Diffstat (limited to 'usr.sbin/bootparamd')
-rw-r--r-- | usr.sbin/bootparamd/callbootd/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/usr.sbin/bootparamd/callbootd/Makefile b/usr.sbin/bootparamd/callbootd/Makefile index ebf161b..1d4fa9d 100644 --- a/usr.sbin/bootparamd/callbootd/Makefile +++ b/usr.sbin/bootparamd/callbootd/Makefile @@ -1,18 +1,19 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id$ +# $Id: Makefile,v 1.8 1997/02/22 16:04:27 peter Exp $ PROG= callbootd -SRCS= bootparam_prot_xdr.c bootparam_prot_clnt.c callbootd.c +SRCS= callbootd.c ${GENSRCS} +GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c NOMAN= CFLAGS+= -I. -CLEANFILES= bootparam_prot_clnt.c bootparam_prot_xdr.c bootparam_prot.h +CLEANFILES= ${GENSRCS} RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x -bootparam_prot_clnt.c: ${RPCSRC} bootparam_prot.h +bootparam_prot_clnt.c: ${RPCSRC} rpcgen -l -o ${.TARGET} ${RPCSRC} -bootparam_prot_xdr.c: ${RPCSRC} bootparam_prot.h +bootparam_prot_xdr.c: ${RPCSRC} rpcgen -c -o ${.TARGET} ${RPCSRC} bootparam_prot.h: ${RPCSRC} |