]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/bootparamd/callbootd/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / bootparamd / callbootd / Makefile
1 #       from: @(#)Makefile      5.8 (Berkeley) 7/28/90
2 # $FreeBSD$
3
4 PROG=   callbootd
5 NO_MAN=
6 SRCS=   callbootd.c ${GENSRCS}
7 GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c
8
9 CFLAGS+= -I.
10
11 CLEANFILES= ${GENSRCS}
12
13 RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
14
15 bootparam_prot_clnt.c: ${RPCSRC}
16         RPCGEN_CPP=${CPP:Q} rpcgen -C -l -o ${.TARGET} ${RPCSRC}
17
18 bootparam_prot_xdr.c: ${RPCSRC}
19         RPCGEN_CPP=${CPP:Q} rpcgen -C -c -o ${.TARGET} ${RPCSRC}
20
21 bootparam_prot.h: ${RPCSRC}
22         RPCGEN_CPP=${CPP:Q} rpcgen -C -h -o ${.TARGET} ${RPCSRC}
23
24 .include <bsd.prog.mk>