No need to do the tricky XRPCGEN dance; simply add the rules after

.include <bsd.lib.mk>.  Defining the explicit compile rules later is fine.
This commit is contained in:
tv 2001-10-31 20:56:09 +00:00
parent 8e97329393
commit 89bc80292e

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.31 2001/03/21 20:14:10 mycroft Exp $
# $NetBSD: Makefile,v 1.32 2001/10/31 20:56:09 tv Exp $
RPCSRCS= bootparam_prot.x klm_prot.x mount.x nfs_prot.x\
nlm_prot.x rex.x rnusers.x rusers.x rquota.x rstat.x rwall.x\
@ -14,27 +14,15 @@ LIB= rpcsvc
MKMAN= no
MKPIC= no
# This little dance is necessary because RPCGEN doesn't get set until
# bsd.lib.mk is included at the end of the makefile. Unfortunately
# that's after make has figured out dependencies using the (lack of) values
# of variables at the time it parses the dependency line.
.ifnmake getrpcgen
XRPCGEN != cd ${.CURDIR} && ${MAKE} -B ${MAKEFLAGS} getrpcgen
.endif
getrpcgen:
@set -- X `type ${RPCGEN}` && shift `expr $$# - 1` && echo "$$1"
.include <bsd.lib.mk>
# We don't use explicit suffix rules here to avoid dependencies in the
# Installed files.
.for I in ${RPCSRCS}
${I:.x=.c}: $I ${XRPCGEN}
${I:.x=.c}: $I ${RPCGEN}
${RPCGEN} -C -c ${.CURDIR}/$I -o ${.TARGET}
${I:.x=.h}: $I ${XRPCGEN}
${I:.x=.h}: $I ${RPCGEN}
${RPCGEN} -C -h ${.CURDIR}/$I -o ${.TARGET}
.endfor
.include <bsd.lib.mk>