summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rpc.ypxfrd/Makefile
blob: 3176c1cd6844acb5ea4820ba675e4838ba8b36fc (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
30
31
32
33
34
35
36
37
# $FreeBSD$

PROG=	rpc.ypxfrd
SRCS=	ypxfrd_svc.c ypxfrd_server.c yp_error.c \
	yp_access.c ypxfrd_main.c

RPCDIR=	${.CURDIR}/../../include/rpcsvc

.PATH:	${.CURDIR}/../../usr.sbin/ypserv

MAN8=	rpc.ypxfrd.8

CFLAGS+= -I. -DXFRBLOCKSIZE=65535

DPADD=	${LIBRPCSVC}
LDADD=	-lrpcsvc

CLEANFILES= ypxfrd_svc.c ypxfrd.h

RPCGEN= rpcgen -I -C

# We need to remove the 'static' keyword from _rpcsvcstate so that
# ypxfrd_main.c can see it.
ypxfrd_svc.c: ${RPCDIR}/ypxfrd.x ypxfrd.h
	rm -f ${.TARGET}
	${RPCGEN} -m ${RPCDIR}/ypxfrd.x | \
	sed s/"static int _rpcsvcstate"/"int _rpcsvcstate"/g > ${.TARGET}

# ypxfrd_xdr.c: ${RPCDIR}/ypxfrd.x ypxfrd.h
#	rm -f ${.TARGET}
#	${RPCGEN} -c -o ${.TARGET} ${RPCDIR}/ypxfrd.x

ypxfrd.h: ${RPCDIR}/ypxfrd.x
	rm -f ${.TARGET}
	${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/ypxfrd.x

.include <bsd.prog.mk>
OpenPOWER on IntegriCloud