freebsd-dev/include/rpcsvc/Makefile
Garrett Wollman 75b6313053 Moved 1.1.5 RPC service files from 1.1.5. Tese are the correct ones;
the ones in /usr/src/lib/librpc/rpcsvc are somewhat bogus and will
be deleted.

Submitted by:	Original work in 1.1 by J.T. Conklin.
1994-08-04 19:01:57 +00:00

38 lines
1.2 KiB
Makefile

# from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC
# $Id: Makefile,v 1.2 1994/06/07 15:53:21 guido Exp $
.SUFFIXES: .x
RPCCOM = rpcgen
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
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
CLEANFILES+= ${HDRS}
all: ${HDRS}
install: all
@echo "Creating RPC service headers directory"
@/bin/rm -rf ${DESTDIR}/usr/include/rpcsvc
@-mkdir ${DESTDIR}/usr/include/rpcsvc
@echo "Installing RPC service header and definition files"
@for i in $(XFILES); do \
(install -c -m 644 ${.CURDIR}/$$i ${DESTDIR}/usr/include/rpcsvc) done
@for i in $(HDRS); do \
(install ${COPY} -m 644 $$i ${DESTDIR}/usr/include/rpcsvc) done
@for i in $(HFILES); do \
(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
.x.h:
@echo generating $@...
@CURPWD=`pwd` ; cd ${.CURDIR} ; ${RPCCOM} -h $*.x -o $$CURPWD/$@
.include <bsd.prog.mk>