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