summaryrefslogtreecommitdiffstats
path: root/lib/libypclnt/Makefile
blob: 4af3bc8f95aeffc7a51efda886cd476e96c116d2 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# $FreeBSD$

LIB		 = ypclnt
SHLIB_MAJOR	 = 1
SHLIB_MINOR	 = 0
SRCS		 =
SRCS		+= ypclnt_connect.c
SRCS		+= ypclnt_error.c
SRCS		+= ypclnt_free.c
SRCS		+= ypclnt_new.c
SRCS		+= ypclnt_passwd.c
SRCS		+= ${GENSRCS}
INCS		 = ypclnt.h
CLEANFILES	+= ${GENSRCS}
CFLAGS		+= -I.
WARNS		?= 4
NO_WERROR	 = yes
DPADD		+= ${LIBRPCSVC}
LDADD		+= -lrpcsvc

GENSRCS		 =
GENSRCS		+= yp.h
GENSRCS		+= yp_clnt.c
GENSRCS		+= yppasswd.h
GENSRCS		+= yppasswd_xdr.c
GENSRCS		+= yppasswd_clnt.c
GENSRCS		+= yppasswd_private.h
GENSRCS		+= yppasswd_private_clnt.c
GENSRCS		+= yppasswd_private_xdr.c

RPCGEN		 = rpcgen -C
RPCSRC		 = ${.CURDIR}/../../include/rpcsvc/yp.x
RPCSRC_PW	 = ${.CURDIR}/../../include/rpcsvc/yppasswd.x
RPCSRC_PRIV	 = ${.CURDIR}/../../usr.sbin/rpc.yppasswdd/yppasswd_private.x

yp.h: ${RPCSRC}
	${RPCGEN} -h -o ${.TARGET} ${RPCSRC}

yp_clnt.c: ${RPCSRC}
	${RPCGEN} -l -o ${.TARGET} ${RPCSRC}

yppasswd.h: ${RPCSRC_PW}
	${RPCGEN} -h -o ${.TARGET} ${RPCSRC_PW}

yppasswd_xdr.c: ${RPCSRC_PW}
	${RPCGEN} -c -o ${.TARGET} ${RPCSRC_PW}

yppasswd_clnt.c: ${RPCSRC_PW}
	${RPCGEN} -l -o ${.TARGET} ${RPCSRC_PW}

yppasswd_private.h: ${RPCSRC_PRIV}
	${RPCGEN} -h -o ${.TARGET} ${RPCSRC_PRIV}

yppasswd_private_xdr.c: ${RPCSRC_PRIV}
	${RPCGEN} -c -o ${.TARGET} ${RPCSRC_PRIV}

yppasswd_private_clnt.c: ${RPCSRC_PRIV}
	${RPCGEN} -l -o ${.TARGET} ${RPCSRC_PRIV}

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