NetBSD/lib/librpcsvc/Makefile

29 lines
643 B
Makefile

# $NetBSD: Makefile,v 1.23 1997/10/09 22:26:17 lukem 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\
sm_inter.x spray.x yp.x yppasswd.x
SRCS= ${RPCSRCS:.x=.c} ${HDRS}
HDRS= ${RPCSRCS:.x=.h}
CLEANFILES+= ${SRCS} ${HDRS}
INCS= ${HDRS} ${RPCSRCS}
INCSDIR= /usr/include/rpcsvc
LIB= rpcsvc
NOMAN=
NOPIC=
# We don't use explicit suffix rules here to avoid dependencies in the
# Installed files.
.for I in ${RPCSRCS}
${I:.x=.c}: $I
rpcgen -c ${.ALLSRC} -o ${.TARGET}
${I:.x=.h}: $I
rpcgen -h ${.ALLSRC} -o ${.TARGET}
.endfor
.include <bsd.lib.mk>