NetBSD/usr.sbin/rpc.bootparamd/Makefile

26 lines
691 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.17 2000/06/12 01:57:25 mycroft Exp $
PROG= rpc.bootparamd
SRCS= bootparamd.c bootparam_prot_svc.c
1994-12-22 14:32:57 +03:00
MAN= bootparams.5 rpc.bootparamd.8
MLINKS= rpc.bootparamd.8 bootparamd.8
1997-10-25 10:57:53 +04:00
CPPFLAGS+=-DYP
1999-06-06 06:38:00 +04:00
DPADD= ${LIBRPCSVC} ${LIBUTIL}
LDADD= -lrpcsvc -lutil
bootparam_prot.x: ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
rm -f ${.TARGET}
ln -s ${.ALLSRC} ${.TARGET}
bootparam_prot.h: ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.h
rm -f ${.TARGET}
ln -s ${.ALLSRC} ${.TARGET}
bootparam_prot_svc.c: bootparam_prot.x bootparam_prot.h
rpcgen -C -L -m -o ${.TARGET} bootparam_prot.x
CLEANFILES += bootparam_prot_svc.c bootparam_prot.x bootparam_prot.h
.include <bsd.prog.mk>