diff options
author | wpaul <wpaul@FreeBSD.org> | 1997-05-28 04:53:07 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1997-05-28 04:53:07 +0000 |
commit | 3440369ab42f6d1a60fd6a85e3399dbfc95c73bf (patch) | |
tree | 498097a8e766e716a3fcae7cc8b62be6c57ad3f5 /lib/librpcsvc | |
parent | ab5685d0c4f5a75bcf83114efafa02cf45769d7d (diff) | |
download | FreeBSD-src-3440369ab42f6d1a60fd6a85e3399dbfc95c73bf.zip FreeBSD-src-3440369ab42f6d1a60fd6a85e3399dbfc95c73bf.tar.gz |
Fix conflicts (this one is easy: there's just the Makefile).
Diffstat (limited to 'lib/librpcsvc')
-rw-r--r-- | lib/librpcsvc/Makefile | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile index 3680d0a..44c2384 100644 --- a/lib/librpcsvc/Makefile +++ b/lib/librpcsvc/Makefile @@ -1,21 +1,27 @@ # from: @(#)Makefile 5.10 (Berkeley) 6/24/90 -# $Id: Makefile,v 1.8 1997/02/22 15:07:51 peter Exp $ +# $Id: Makefile,v 1.6 1996/08/30 02:02:09 peter Exp $ .PATH: ${DESTDIR}/usr/include/rpcsvc LIB= rpcsvc RPCSRCS= 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 ypxfrd.x + rquota.x rstat.x rwall.x sm_inter.x spray.x yppasswd.x ypxfrd.x \ + ypupdate_prot.x -RPCCOM = rpcgen +OTHERSRCS= rnusers.c rstat.c rwall.c yp_passwd.c yp_update.c +SECRPCSRCS= publickey.c secretkey.c xcrypt.c -INCDIRS= -I${DESTDIR}/usr/include/rpcsvc -CFLAGS+= ${INCDIRS} +RPCCOM = rpcgen -C -SRCS= ${RPCSRCS:R:S/$/_xdr.c/g} +INCDIRS= -I${DESTDIR}/usr/include/rpcsvc -I${DESTDIR}/usr/include -CLEANFILES+= ${SRCS} ${RPCSRCS} +CFLAGS+= -DYP ${INCDIRS} + +GENSRCS= ${RPCSRCS:R:S/$/_xdr.c/g} +SRCS+= ${GENSRCS} ${OTHERSRCS} ${SECRPCSRCS} + +CLEANFILES+= ${GENSRCS} ${RPCSRCS} NOMAN= noman @@ -26,4 +32,5 @@ NOMAN= noman .x_xdr.c: ${RPCCOM} -c ${.IMPSRC} -o ${.TARGET} -OBJS= ${RPCSRCS:R:S/$/_xdr.o/g} +OBJS= ${RPCSRCS:R:S/$/_xdr.o/g} ${SECRPCSRCS:R:S/$/.o/g} \ + ${OTHERSRCS:R:S/$/.o/g} |