freebsd-skq/lib/libc/yp/Makefile.inc
bdrewery a88a58d887 Use on crypto.x and rpc.x from the source tree.
This fixes the build when DESTDIR may be blank or not yet populated.
It also fixes reproducibility.

Submitted by:	brooks
Approved by:	re (gjb)
Differential Revision:	https://reviews.freebsd.org/D6455
2016-06-28 19:53:16 +00:00

20 lines
396 B
Makefile

# from: @(#)Makefile.inc 5.3 (Berkeley) 2/20/91
# $FreeBSD$
# yp sources
.PATH: ${LIBC_SRCTOP}/yp
SRCS+= xdryp.c yp.h yp_xdr.c yplib.c
CLEANFILES+= yp.h yp_xdr.c
SYM_MAPS+= ${LIBC_SRCTOP}/yp/Symbol.map
RPCSRC= ${SRCTOP}/include/rpcsvc/yp.x
RPCGEN= RPCGEN_CPP=${CPP:Q} rpcgen -C
yp_xdr.c: ${RPCSRC}
${RPCGEN} -c -o ${.TARGET} ${RPCSRC}
yp.h: ${RPCSRC}
${RPCGEN} -h -o ${.TARGET} ${RPCSRC}