1 # $NetBSD: Makefile,v 1.41 2019/04/24 10:26:43 roy Exp $ 2 3 WARNS= 4 4 5 USE_FORT?= yes # network protocol library 6 7 NOMAN= # defined 8 9 RPCSRCS= bootparam_prot.x klm_prot.x mount.x nfs_prot.x\ 10 nlm_prot.x rex.x rnusers.x rusers.x rquota.x rstat.x rwall.x\ 11 sm_inter.x spray.x 12 13 .include <bsd.own.mk> 14 15 .if (${MKYP} != "no") 16 RPCSRCS+= yp.x yppasswd.x 17 .endif 18 19 RPC_INCS= ${RPCSRCS:.x=.h} 20 RPC_XDRFILES= ${RPCSRCS:.x=_xdr.c} 21 22 HDRS= ${RPC_INCS} 23 SRCS= ${RPC_XDRFILES} ${HDRS} 24 25 INCS= ${HDRS} ${RPCSRCS} 26 INCSDIR= /usr/include/rpcsvc 27 28 LIB= rpcsvc 29 30 .include <bsd.rpc.mk> 31 .include <bsd.lib.mk> 32