1994-08-04 19:01:57 +00:00
|
|
|
# from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC
|
1996-08-29 19:59:48 +00:00
|
|
|
# $Id: Makefile,v 1.8 1996/06/05 03:47:18 wpaul Exp $
|
1994-08-04 19:01:57 +00:00
|
|
|
|
|
|
|
.SUFFIXES: .x
|
|
|
|
|
|
|
|
RPCCOM = rpcgen
|
1995-08-15 20:06:50 +00:00
|
|
|
BINMODE = 444
|
1994-08-04 19:01:57 +00:00
|
|
|
|
1996-06-05 03:47:18 +00:00
|
|
|
HDRS= klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h \
|
|
|
|
rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h \
|
|
|
|
ypxfrd.h
|
1994-08-04 19:01:57 +00:00
|
|
|
XFILES= bootparam_prot.x klm_prot.x mount.x nfs_prot.x nlm_prot.x \
|
|
|
|
rex.x rnusers.x rquota.x rstat.x rwall.x sm_inter.x spray.x \
|
1996-06-05 03:47:18 +00:00
|
|
|
yppasswd.x yp.x ypxfrd.x
|
1994-08-04 19:01:57 +00:00
|
|
|
HFILES= yp_prot.h ypclnt.h
|
|
|
|
|
|
|
|
CLEANFILES+= ${HDRS}
|
|
|
|
|
|
|
|
all: ${HDRS}
|
|
|
|
|
1996-08-29 19:59:48 +00:00
|
|
|
install: ${HDRS}
|
|
|
|
cd ${.CURDIR} && \
|
|
|
|
${INSTALL} -C -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \
|
|
|
|
${HFILES} ${DESTDIR}/usr/include/rpcsvc
|
|
|
|
cd ${.CURDIR} && \
|
|
|
|
${INSTALL} -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \
|
|
|
|
${XFILES} ${DESTDIR}/usr/include/rpcsvc
|
|
|
|
${INSTALL} -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} ${HDRS} \
|
|
|
|
${DESTDIR}/usr/include/rpcsvc
|
1994-08-04 19:01:57 +00:00
|
|
|
|
|
|
|
.x.h:
|
1995-06-29 19:43:00 +00:00
|
|
|
cd ${.CURDIR} ; ${RPCCOM} -h $*.x -o ${.OBJDIR}/$@
|
1994-08-04 19:01:57 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|