1995-02-26 18:40:53 -05:00
|
|
|
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
1999-08-27 21:35:59 -04:00
|
|
|
# $FreeBSD$
|
1995-02-26 18:40:53 -05:00
|
|
|
|
|
|
|
|
PROG= callbootd
|
2004-12-21 03:47:35 -05:00
|
|
|
NO_MAN=
|
1998-04-26 12:31:14 -04:00
|
|
|
SRCS= callbootd.c ${GENSRCS}
|
|
|
|
|
GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c
|
2001-07-20 02:20:32 -04:00
|
|
|
|
1995-03-01 03:04:40 -05:00
|
|
|
CFLAGS+= -I.
|
2001-07-20 02:20:32 -04:00
|
|
|
|
1998-04-26 12:31:14 -04:00
|
|
|
CLEANFILES= ${GENSRCS}
|
1995-02-26 18:40:53 -05:00
|
|
|
|
1995-07-04 04:39:27 -04:00
|
|
|
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
|
1995-02-26 18:40:53 -05:00
|
|
|
|
1998-04-26 12:31:14 -04:00
|
|
|
bootparam_prot_clnt.c: ${RPCSRC}
|
2005-02-09 07:17:52 -05:00
|
|
|
rpcgen -C -l -o ${.TARGET} ${RPCSRC}
|
1995-02-26 18:40:53 -05:00
|
|
|
|
1998-04-26 12:31:14 -04:00
|
|
|
bootparam_prot_xdr.c: ${RPCSRC}
|
2005-02-09 07:17:52 -05:00
|
|
|
rpcgen -C -c -o ${.TARGET} ${RPCSRC}
|
1995-07-04 04:39:27 -04:00
|
|
|
|
|
|
|
|
bootparam_prot.h: ${RPCSRC}
|
2005-02-09 07:17:52 -05:00
|
|
|
rpcgen -C -h -o ${.TARGET} ${RPCSRC}
|
1995-02-26 18:40:53 -05:00
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|