summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ypserv/Makefile
blob: 8889e1ac1533384fd3ce420750d320d6069abf82 (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
38
39
# $Id: Makefile,v 1.8 1996/12/03 02:37:35 wpaul Exp $

PROG=	ypserv
SRCS=	yp_svc.c yp_server.c yp_dblookup.c yp_dnslookup.c \
	ypxfr_clnt.c yp_main.c yp_error.c yp_access.c yp_svc_udp.c

MAN8=	ypserv.8

CFLAGS+= -I. -DDB_CACHE

CLEANFILES= yp_svc.c ypxfr_clnt.c yp.h

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

RPCGEN= rpcgen -I -C

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

ypxfr_clnt.c: yp.x yp.h
	${RPCGEN} -DYPPUSH_ONLY -l -o ${.TARGET} ${RPCDIR}/yp.x

yp.h: yp.x
	${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/yp.x

afterinstall:
	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
		${.CURDIR}/Makefile.yp \
		${DESTDIR}/var/yp/Makefile.dist
	@if [ ! -f ${DESTDIR}/var/yp/Makefile.dist ]; then \
		ln -s	${DESTDIR}/var/yp/Makefile.dist \
			${DESTDIR}/var/yp/Makefile; fi

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