1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-03 09:00:21 +00:00

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.
This commit is contained in:
Bruce Evans 1998-05-09 11:32:43 +00:00
parent 4af1e600d9
commit 6f6040ffb1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35891

View File

@ -1,19 +1,20 @@
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
# $Id$
# $Id: Makefile,v 1.9 1997/02/22 16:04:21 peter Exp $
PROG= bootparamd
SRCS= bootparam_prot_xdr.c bootparam_prot_svc.c bootparamd.c main.c
MAN8= bootparamd.8
SRCS= bootparamd.c main.c ${GENSRCS}
GENSRCS=bootparam_prot.h bootparam_prot_svc.c bootparam_prot_xdr.c
MAN5= bootparams.5
MAN8= bootparamd.8
CFLAGS+= -DTFTP_DIR=\"/tftpboot\" -I.
CLEANFILES= bootparam_prot_svc.c bootparam_prot_xdr.c bootparam_prot.h
CLEANFILES= ${GENSRCS}
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
bootparam_prot_svc.c: ${RPCSRC} bootparam_prot.h
bootparam_prot_svc.c: ${RPCSRC}
rpcgen -m -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}