1994-08-09 16:56:28 +00:00
|
|
|
# from: @(#)Makefile 5.10 (Berkeley) 6/24/90
|
1998-02-25 01:30:05 +00:00
|
|
|
# $Id: Makefile,v 1.10 1997/05/28 04:53:07 wpaul Exp $
|
1994-08-09 16:56:28 +00:00
|
|
|
|
|
|
|
.PATH: ${DESTDIR}/usr/include/rpcsvc
|
|
|
|
|
|
|
|
LIB= rpcsvc
|
|
|
|
|
|
|
|
RPCSRCS= klm_prot.x mount.x nfs_prot.x nlm_prot.x rex.x rnusers.x \
|
1997-05-28 04:53:07 +00:00
|
|
|
rquota.x rstat.x rwall.x sm_inter.x spray.x yppasswd.x ypxfrd.x \
|
|
|
|
ypupdate_prot.x
|
1994-08-09 16:56:28 +00:00
|
|
|
|
1997-05-28 04:53:07 +00:00
|
|
|
OTHERSRCS= rnusers.c rstat.c rwall.c yp_passwd.c yp_update.c
|
|
|
|
SECRPCSRCS= publickey.c secretkey.c xcrypt.c
|
1994-08-09 16:56:28 +00:00
|
|
|
|
1997-05-28 04:53:07 +00:00
|
|
|
RPCCOM = rpcgen -C
|
1994-08-09 16:56:28 +00:00
|
|
|
|
1997-05-28 04:53:07 +00:00
|
|
|
INCDIRS= -I${DESTDIR}/usr/include/rpcsvc -I${DESTDIR}/usr/include
|
1994-08-09 16:56:28 +00:00
|
|
|
|
1997-05-28 04:53:07 +00:00
|
|
|
CFLAGS+= -DYP ${INCDIRS}
|
|
|
|
|
|
|
|
GENSRCS= ${RPCSRCS:R:S/$/_xdr.c/g}
|
|
|
|
SRCS+= ${GENSRCS} ${OTHERSRCS} ${SECRPCSRCS}
|
|
|
|
|
1998-02-25 01:30:05 +00:00
|
|
|
CLEANFILES+= ${GENSRCS}
|
1994-08-09 16:56:28 +00:00
|
|
|
|
|
|
|
NOMAN= noman
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
|
|
|
|
.SUFFIXES: .x _xdr.c
|
|
|
|
|
|
|
|
.x_xdr.c:
|
1996-08-30 02:02:09 +00:00
|
|
|
${RPCCOM} -c ${.IMPSRC} -o ${.TARGET}
|
1994-08-09 16:56:28 +00:00
|
|
|
|
1997-05-28 04:53:07 +00:00
|
|
|
OBJS= ${RPCSRCS:R:S/$/_xdr.o/g} ${SECRPCSRCS:R:S/$/.o/g} \
|
|
|
|
${OTHERSRCS:R:S/$/.o/g}
|