Makefile revision 1.4
11.4Sderaadt# $Id: Makefile,v 1.4 1994/01/17 15:13:32 deraadt Exp $ 21.2Sderaadt 31.2SderaadtCFLAGS+=-DYP 41.1Sderaadt 51.1SderaadtPROG= rpc.bootparamd 61.1SderaadtSRCS= bootparamd.c bootparam_prot_svc.c 71.1SderaadtMAN8= rpc.bootparamd.0 81.1Sderaadt 91.1SderaadtDPADD= ${LIBRPCSVC} ${LIBUTIL} 101.1SderaadtLDADD= -lrpcsvc -lutil 111.1Sderaadt 121.1Sderaadtbootparam_prot_svc.c: /usr/include/rpcsvc/bootparam_prot.x 131.4Sderaadt rm -f bootparam_prot.x 141.1Sderaadt ln -s /usr/include/rpcsvc/bootparam_prot.x . 151.4Sderaadt rm -f bootparam_prot.h 161.1Sderaadt ln -s /usr/include/rpcsvc/bootparam_prot.h . 171.1Sderaadt rpcgen -m -o $@ bootparam_prot.x 181.1Sderaadt 191.1SderaadtCLEANFILES += bootparam_prot_svc.c bootparam_prot.x bootparam_prot.h 201.1Sderaadt 211.1Sderaadt.include <bsd.prog.mk> 22