freebsd-dev/usr.sbin/bootparamd/callbootd/Makefile
Bruce Evans 22450dd8c1 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.
1998-04-26 16:31:14 +00:00

23 lines
536 B
Makefile

# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
# $Id: Makefile,v 1.8 1997/02/22 16:04:27 peter Exp $
PROG= callbootd
SRCS= callbootd.c ${GENSRCS}
GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c
NOMAN=
CFLAGS+= -I.
CLEANFILES= ${GENSRCS}
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
bootparam_prot_clnt.c: ${RPCSRC}
rpcgen -l -o ${.TARGET} ${RPCSRC}
bootparam_prot_xdr.c: ${RPCSRC}
rpcgen -c -o ${.TARGET} ${RPCSRC}
bootparam_prot.h: ${RPCSRC}
rpcgen -h -o ${.TARGET} ${RPCSRC}
.include <bsd.prog.mk>