Deleted Added
full compact
Makefile (80029) Makefile (136910)
1# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
1# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
2# $FreeBSD: head/usr.sbin/bootparamd/callbootd/Makefile 80029 2001-07-20 06:20:32Z obrien $
2# $FreeBSD: head/usr.sbin/bootparamd/callbootd/Makefile 136910 2004-10-24 15:33:08Z ru $
3
4PROG= callbootd
3
4PROG= callbootd
5NOMAN= #true
5NOMAN=
6SRCS= callbootd.c ${GENSRCS}
7GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c
8
9CFLAGS+= -I.
10
11CLEANFILES= ${GENSRCS}
12
13RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
14
15bootparam_prot_clnt.c: ${RPCSRC}
16 rpcgen -l -o ${.TARGET} ${RPCSRC}
17
18bootparam_prot_xdr.c: ${RPCSRC}
19 rpcgen -c -o ${.TARGET} ${RPCSRC}
20
21bootparam_prot.h: ${RPCSRC}
22 rpcgen -h -o ${.TARGET} ${RPCSRC}
23
24.include <bsd.prog.mk>
6SRCS= callbootd.c ${GENSRCS}
7GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c
8
9CFLAGS+= -I.
10
11CLEANFILES= ${GENSRCS}
12
13RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
14
15bootparam_prot_clnt.c: ${RPCSRC}
16 rpcgen -l -o ${.TARGET} ${RPCSRC}
17
18bootparam_prot_xdr.c: ${RPCSRC}
19 rpcgen -c -o ${.TARGET} ${RPCSRC}
20
21bootparam_prot.h: ${RPCSRC}
22 rpcgen -h -o ${.TARGET} ${RPCSRC}
23
24.include <bsd.prog.mk>