diff options
Diffstat (limited to 'lib/librpcsvc/Makefile')
-rw-r--r-- | lib/librpcsvc/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile new file mode 100644 index 0000000..3680d0a --- /dev/null +++ b/lib/librpcsvc/Makefile @@ -0,0 +1,29 @@ +# from: @(#)Makefile 5.10 (Berkeley) 6/24/90 +# $Id: Makefile,v 1.8 1997/02/22 15:07:51 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 + +RPCCOM = rpcgen + +INCDIRS= -I${DESTDIR}/usr/include/rpcsvc +CFLAGS+= ${INCDIRS} + +SRCS= ${RPCSRCS:R:S/$/_xdr.c/g} + +CLEANFILES+= ${SRCS} ${RPCSRCS} + +NOMAN= noman + +.include <bsd.lib.mk> + +.SUFFIXES: .x _xdr.c + +.x_xdr.c: + ${RPCCOM} -c ${.IMPSRC} -o ${.TARGET} + +OBJS= ${RPCSRCS:R:S/$/_xdr.o/g} |