1995-02-26 23:40:53 +00:00
|
|
|
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
1997-01-14 07:20:47 +00:00
|
|
|
# $FreeBSD$
|
1995-02-26 23:40:53 +00:00
|
|
|
|
|
|
|
PROG= callbootd
|
|
|
|
SRCS= bootparam_prot_xdr.c bootparam_prot_clnt.c callbootd.c
|
1995-05-30 03:57:47 +00:00
|
|
|
NOMAN=
|
1995-03-01 08:04:40 +00:00
|
|
|
CFLAGS+= -I.
|
1995-07-04 08:39:27 +00:00
|
|
|
CLEANFILES= bootparam_prot_clnt.c bootparam_prot_xdr.c bootparam_prot.h
|
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
|
|
|
|
1995-07-04 08:39:27 +00:00
|
|
|
bootparam_prot_clnt.c: ${RPCSRC} bootparam_prot.h
|
|
|
|
rpcgen -l -o ${.TARGET} ${RPCSRC}
|
1995-02-26 23:40:53 +00:00
|
|
|
|
1995-07-04 08:39:27 +00:00
|
|
|
bootparam_prot_xdr.c: ${RPCSRC} bootparam_prot.h
|
|
|
|
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>
|