From ddb80fc7dd58b04c4a2b129350d10177b7f001cf Mon Sep 17 00:00:00 2001 From: bde Date: Sun, 26 Apr 1998 16:31:14 +0000 Subject: Fixed `make -j9' by putting generated headers in ${SRCS}. Removed bogus dependencies of generated .c files on generated headers (these made `make -JN' work provided `depend' was made first). Sorted sources lists. --- usr.sbin/bootparamd/callbootd/Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'usr.sbin/bootparamd') 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} -- cgit v1.1