Makefile revision 1.41
1# $NetBSD: Makefile,v 1.41 2019/04/24 10:26:43 roy Exp $ 2 3WARNS= 4 4 5USE_FORT?= yes # network protocol library 6 7NOMAN= # defined 8 9RPCSRCS= 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") 16RPCSRCS+= yp.x yppasswd.x 17.endif 18 19RPC_INCS= ${RPCSRCS:.x=.h} 20RPC_XDRFILES= ${RPCSRCS:.x=_xdr.c} 21 22HDRS= ${RPC_INCS} 23SRCS= ${RPC_XDRFILES} ${HDRS} 24 25INCS= ${HDRS} ${RPCSRCS} 26INCSDIR= /usr/include/rpcsvc 27 28LIB= rpcsvc 29 30.include <bsd.rpc.mk> 31.include <bsd.lib.mk> 32