diff options
author | bde <bde@FreeBSD.org> | 1998-04-26 16:31:14 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-04-26 16:31:14 +0000 |
commit | ddb80fc7dd58b04c4a2b129350d10177b7f001cf (patch) | |
tree | 09db16c13d3be4fadd202bc1f4e472e5930bc0b9 /usr.sbin/bootparamd | |
parent | ea697874b9d11504507d7e2b5f1512bd8ed3148b (diff) | |
download | FreeBSD-src-ddb80fc7dd58b04c4a2b129350d10177b7f001cf.zip FreeBSD-src-ddb80fc7dd58b04c4a2b129350d10177b7f001cf.tar.gz |
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.
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} |