NetBSD/include/rpcsvc/Makefile

38 lines
1.2 KiB
Makefile
Raw Normal View History

1993-08-01 09:37:30 +04:00
# from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC
# $Id: Makefile,v 1.9 1993/08/01 05:41:52 mycroft Exp $
1993-04-04 23:00:06 +04:00
.SUFFIXES: .x
RPCCOM = rpcgen
1993-06-03 23:20:02 +04:00
HDRS= klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h\
1993-04-04 23:00:06 +04:00
rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h
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 \
yppasswd.x yp.x
HFILES= yp_prot.h ypclnt.h
1993-04-04 23:00:06 +04:00
CLEANFILES+= ${HDRS}
1993-05-06 06:23:15 +04:00
all: ${HDRS}
1993-04-04 23:00:06 +04:00
1993-05-06 06:23:15 +04:00
install: all
1993-04-04 23:00:06 +04:00
@echo "Creating RPC service headers directory"
@/bin/rm -rf ${DESTDIR}/usr/include/rpcsvc
@-mkdir ${DESTDIR}/usr/include/rpcsvc
1993-04-04 23:00:06 +04:00
@echo "Installing RPC service header and definition files"
@for i in $(XFILES); do \
1993-06-07 08:28:27 +04:00
(install -c -m 644 ${.CURDIR}/$$i ${DESTDIR}/usr/include/rpcsvc) done
1993-04-04 23:00:06 +04:00
@for i in $(HDRS); do \
1993-07-18 23:17:22 +04:00
(install ${COPY} -m 644 $$i ${DESTDIR}/usr/include/rpcsvc) done
@for i in $(HFILES); do \
1993-06-07 08:28:27 +04:00
(install -c -m 644 ${.CURDIR}/$$i ${DESTDIR}/usr/include/rpcsvc) done
@chown -R ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/rpcsvc
@chmod -R a-w ${DESTDIR}/usr/include/rpcsvc
1993-04-04 23:00:06 +04:00
.x.h:
@echo generating $@...
@PWD=`pwd` ; cd ${.CURDIR} ; ${RPCCOM} -h $*.x -o $$PWD/$@
.include <bsd.prog.mk>