NetBSD/usr.sbin/rpc.pcnfsd/Makefile.clnt

30 lines
609 B
Makefile
Raw Normal View History

# $NetBSD: Makefile.clnt,v 1.5 1999/02/13 02:55:00 lukem Exp $
1995-07-24 08:02:44 +04:00
# This Makefile builds a client used for testing.
1997-10-25 10:57:53 +04:00
CPPFLAGS += -DUSER_CACHE -DWTMP -DUSE_YP -I${.OBJDIR}
1995-07-24 08:02:44 +04:00
PROG= clnt.pcnfsd
SRCS= pcnfsd_test.c pcnfsd_clnt.c pcnfsd_xdr.c
MKMAN= no
1995-07-24 08:02:44 +04:00
DPADD= ${LIBRPCSVC}
LDADD= -lrpcsvc
# Special rules for the generated C code...
pcnfsd_clnt.c: pcnfsd.x
rpcgen -l ${.CURDIR}/pcnfsd.x -o $@
1995-07-24 08:02:44 +04:00
pcnfsd_xdr.c: pcnfsd.x
rpcgen -c ${.CURDIR}/pcnfsd.x -o $@
1995-07-24 08:02:44 +04:00
pcnfsd.h: pcnfsd.x
rpcgen -h ${.CURDIR}/pcnfsd.x -o $@
1995-07-24 08:02:44 +04:00
CLEANFILES += pcnfsd_clnt.c pcnfsd_xdr.c pcnfsd.h
.include <bsd.prog.mk>
.depend ${OBJS}: pcnfsd.h