1994-08-09 12:56:28 -04:00
|
|
|
# from: @(#)Makefile 5.10 (Berkeley) 6/24/90
|
1999-08-27 20:22:10 -04:00
|
|
|
# $FreeBSD$
|
1994-08-09 12:56:28 -04:00
|
|
|
|
2014-05-06 00:22:01 -04:00
|
|
|
.include <src.opts.mk>
|
2006-03-17 13:54:44 -05:00
|
|
|
|
2017-01-19 23:36:28 -05:00
|
|
|
.PATH: ${SRCTOP}/include/rpcsvc
|
1994-08-09 12:56:28 -04:00
|
|
|
|
|
|
|
|
LIB= rpcsvc
|
|
|
|
|
|
|
|
|
|
RPCSRCS= klm_prot.x mount.x nfs_prot.x nlm_prot.x rex.x rnusers.x \
|
1997-05-28 00:53:07 -04:00
|
|
|
rquota.x rstat.x rwall.x sm_inter.x spray.x yppasswd.x ypxfrd.x \
|
|
|
|
|
ypupdate_prot.x
|
1994-08-09 12:56:28 -04:00
|
|
|
|
2004-11-13 15:40:32 -05:00
|
|
|
OTHERSRCS= rnusers.c rstat.c rwall.c
|
1998-05-18 17:59:53 -04:00
|
|
|
SECRPCSRCS= secretkey.c xcrypt.c
|
1994-08-09 12:56:28 -04:00
|
|
|
|
2006-03-17 13:54:44 -05:00
|
|
|
.if ${MK_NIS} != "no"
|
2004-11-13 15:40:32 -05:00
|
|
|
OTHERSRCS+= yp_passwd.c yp_update.c
|
|
|
|
|
.endif
|
|
|
|
|
|
2012-02-07 04:27:07 -05:00
|
|
|
RPCCOM= RPCGEN_CPP=${CPP:Q} rpcgen -C
|
1994-08-09 12:56:28 -04:00
|
|
|
|
2017-06-19 16:47:24 -04:00
|
|
|
INCDIRS= -I${SYSROOT:U${DESTDIR}}/usr/include/rpcsvc
|
1994-08-09 12:56:28 -04:00
|
|
|
|
1997-05-28 00:53:07 -04:00
|
|
|
CFLAGS+= -DYP ${INCDIRS}
|
|
|
|
|
|
|
|
|
|
GENSRCS= ${RPCSRCS:R:S/$/_xdr.c/g}
|
|
|
|
|
SRCS+= ${GENSRCS} ${OTHERSRCS} ${SECRPCSRCS}
|
|
|
|
|
|
1998-02-24 20:30:05 -05:00
|
|
|
CLEANFILES+= ${GENSRCS}
|
1994-08-09 12:56:28 -04:00
|
|
|
|
2008-02-05 15:03:45 -05:00
|
|
|
WARNS?= 1
|
2008-02-04 02:56:36 -05:00
|
|
|
|
1994-08-09 12:56:28 -04:00
|
|
|
.include <bsd.lib.mk>
|
|
|
|
|
|
|
|
|
|
.SUFFIXES: .x _xdr.c
|
|
|
|
|
|
|
|
|
|
.x_xdr.c:
|
1996-08-29 22:02:09 -04:00
|
|
|
${RPCCOM} -c ${.IMPSRC} -o ${.TARGET}
|
1994-08-09 12:56:28 -04:00
|
|
|
|
1997-05-28 00:53:07 -04:00
|
|
|
OBJS= ${RPCSRCS:R:S/$/_xdr.o/g} ${SECRPCSRCS:R:S/$/.o/g} \
|
|
|
|
|
${OTHERSRCS:R:S/$/.o/g}
|