Clean up deleted files.

This commit is contained in:
mycroft 1994-01-20 23:04:15 +00:00
parent 9b343db615
commit 381c79c430
4 changed files with 0 additions and 72 deletions

View File

@ -1,13 +0,0 @@
# $Id: Makefile.dep,v 1.1 1993/10/08 05:26:27 cgd Exp $
RPCCOM= rpcgen
.SUFFIXES: .x .c .h
.x.c:
@echo generating $@...
@PWD=`pwd` ; cd ${RPCDIR} ; ${RPCCOM} -c $*.x -o $$PWD/$@
.x.h:
@echo generating $@...
@PWD=`pwd` ; cd ${RPCDIR} ; ${RPCCOM} -h $*.x -o $$PWD/$@

View File

@ -1,5 +0,0 @@
# $Id: Makefile.src,v 1.5 1993/11/27 20:36:30 mycroft Exp $
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

View File

@ -1,32 +0,0 @@
# $Id: Makefile,v 1.2 1993/10/09 23:31:36 cgd Exp $
RPCDIR= ${.CURDIR}/../src
.PATH: ${RPCDIR}
.include "${.CURDIR}/../Makefile.src"
HDRS= ${RPCSRCS:R:S/$/.h/g}
CLEANFILES+= ${HDRS}
all: ${HDRS}
NOMAN= noman
install:
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.prog.mk>
.include "${.CURDIR}/../Makefile.dep"

View File

@ -1,22 +0,0 @@
# $Id: Makefile,v 1.3 1993/10/13 05:28:03 cgd Exp $
RPCDIR= ${.CURDIR}/../src
.PATH: ${RPCDIR}
.include "${.CURDIR}/../Makefile.src"
LIB= rpcsvc
SRCS= ${RPCSRCS:R:S/$/.c/g}
HDRS= ${RPCSRCS:R:S/$/.h/g}
CLEANFILES+= ${SRCS} ${HDRS}
NOMAN= noman
NOPIC=
beforedepend: ${HDRS}
all: ${HDRS}
# new suffixes have to go afterwards, because bsd.lib.mk clears them
.include <bsd.lib.mk>
.include "${.CURDIR}/../Makefile.dep"