blob: d0cf75c3ec830c69a840270e02cc0719e6d68a65 (
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
|
# $OpenBSD: Makefile,v 1.4 1997/08/19 08:05:16 niklas Exp $
PROG = rpc.lockd
SRCS = nlm_prot_svc.c lockd.c procs.c
MAN = rpc.lockd.8
DPADD= ${LIBRPCSVC}
LDADD= -lrpcsvc
CFLAGS+= -I. -DSYSLOG
CLEANFILES= nlm_prot_svc.c nlm_prot.h
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/nlm_prot.x
RPCGEN= rpcgen -L -C
nlm_prot_svc.c: ${RPCSRC} nlm_prot.h
${RPCGEN} -m -o ${.TARGET} ${RPCSRC}
nlm_prot.h: ${RPCSRC}
${RPCGEN} -h -o ${.TARGET} ${RPCSRC}
test: test.c
cc -o test test.c -lrpcsvc
.include <bsd.prog.mk>
|