Rpcgen fix allows us to simplify building of rpcsvc library.

This commit is contained in:
jtc 1994-01-20 23:04:13 +00:00
parent 2cee3e073f
commit 9b343db615
1 changed files with 43 additions and 3 deletions

View File

@ -1,5 +1,45 @@
# $Id: Makefile,v 1.7 1993/10/08 05:26:25 cgd Exp $
# $Id: Makefile,v 1.8 1994/01/20 23:04:13 jtc Exp $
SUBDIR= include lib
RPCDIR= ${.CURDIR}/src
.PATH: ${RPCDIR}
.include <bsd.subdir.mk>
RPCSRCS= amq.x 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:R:S/$/.c/g}
HDRS= ${RPCSRCS:R:S/$/.h/g}
CLEANFILES+= ${SRCS} ${HDRS}
LIB= rpcsvc
NOMAN=
NOPIC=
all: ${HDRS}
beforedepend: ${HDRS}
beforeinstall:
install -d -o bin -g bin -m 755 ${DESTDIR}/usr/include/rpcsvc
@for i in $(HDRS); do \
echo install ${COPY} -o bin -g bin -m 444 $$i \
${DESTDIR}/usr/include/rpcsvc ; \
install ${COPY} -o bin -g bin -m 444 $$i \
${DESTDIR}/usr/include/rpcsvc ; \
done
@for i in $(RPCSRCS); do \
echo install -c -o bin -g bin -m 444 ${RPCDIR}/$$i \
${DESTDIR}/usr/include/rpcsvc ; \
install -c -o bin -g bin -m 444 ${RPCDIR}/$$i \
${DESTDIR}/usr/include/rpcsvc ; \
done
# new suffixes have to go afterwards, because bsd.lib.mk clears them
.include <bsd.lib.mk>
.SUFFIXES: .x .c .h
.x.c:
@echo generating $@...
@rpcgen -c ${.IMPSRC} -o ${.TARGET}
.x.h:
@echo generating $@...
@rpcgen -h ${.IMPSRC} -o ${.TARGET}