blob: 7b9ef7c6d7696573e6fa4865ddd688ee39ced992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $OpenBSD: Makefile.clnt,v 1.2 1997/09/21 11:44:17 deraadt Exp $
# This Makefile builds a client used for testing.
CFLAGS += -DUSER_CACHE -DWTMP -DUSE_YP -I${.OBJDIR}
PROG= clnt.pcnfsd
SRCS= pcnfsd_test.c pcnfsd_clnt.c pcnfsd_xdr.c
NOMAN= noman
DPADD= ${LIBRPCSVC}
LDADD= -lrpcsvc
# Special rules for the generated C code...
pcnfsd_clnt.c: pcnfsd.x
rpcgen -l ${.CURDIR}/pcnfsd.x -o $@
pcnfsd_xdr.c: pcnfsd.x
rpcgen -c ${.CURDIR}/pcnfsd.x -o $@
pcnfsd.h: pcnfsd.x
rpcgen -h ${.CURDIR}/pcnfsd.x -o $@
CLEANFILES += pcnfsd_clnt.c pcnfsd_xdr.c pcnfsd.h
.include <bsd.prog.mk>
.depend ${OBJS}: pcnfsd.h
|