1995-02-26 23:40:53 +00:00
|
|
|
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
1998-04-26 16:31:14 +00:00
|
|
|
# $Id: Makefile,v 1.8 1997/02/22 16:04:27 peter Exp $
|
1995-02-26 23:40:53 +00:00
|
|
|
|
|
|
|
PROG= callbootd
|
1998-04-26 16:31:14 +00:00
|
|
|
SRCS= callbootd.c ${GENSRCS}
|
|
|
|
GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c
|
1995-05-30 03:57:47 +00:00
|
|
|
NOMAN=
|
1995-03-01 08:04:40 +00:00
|
|
|
CFLAGS+= -I.
|
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>
|