Home | History | Annotate | Line # | Download | only in rpc.bootparamd
Makefile revision 1.20
      1  1.20       tv #	$NetBSD: Makefile,v 1.20 2002/02/02 17:11:38 tv Exp $
      2   1.1  deraadt 
      3   1.1  deraadt PROG=	rpc.bootparamd
      4   1.1  deraadt SRCS=	bootparamd.c bootparam_prot_svc.c
      5   1.7      cgd MAN=	bootparams.5 rpc.bootparamd.8
      6   1.6      gwr MLINKS=	rpc.bootparamd.8 bootparamd.8
      7  1.15    lukem CPPFLAGS+=-DYP
      8   1.1  deraadt 
      9  1.16  thorpej DPADD=	${LIBRPCSVC} ${LIBUTIL}
     10  1.16  thorpej LDADD=	-lrpcsvc -lutil
     11   1.1  deraadt 
     12  1.20       tv CLEANFILES += bootparam_prot_svc.c bootparam_prot.x bootparam_prot.h
     13  1.20       tv 
     14  1.19       tv .include <bsd.prog.mk>
     15  1.19       tv 
     16  1.17  mycroft bootparam_prot.x: ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
     17  1.17  mycroft 	rm -f ${.TARGET}
     18  1.17  mycroft 	ln -s ${.ALLSRC} ${.TARGET}
     19  1.17  mycroft 
     20  1.17  mycroft bootparam_prot.h: ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.h
     21  1.17  mycroft 	rm -f ${.TARGET}
     22  1.17  mycroft 	ln -s ${.ALLSRC} ${.TARGET}
     23  1.17  mycroft 
     24  1.17  mycroft bootparam_prot_svc.c: bootparam_prot.x bootparam_prot.h
     25  1.18      cgd 	${RPCGEN} -C -L -m -o ${.TARGET} bootparam_prot.x
     26