mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
18 lines
330 B
Makefile
18 lines
330 B
Makefile
# from: @(#)Makefile.inc 5.3 (Berkeley) 2/20/91
|
|
# $Id$
|
|
|
|
# yp sources
|
|
.PATH: ${.CURDIR}/yp
|
|
|
|
SRCS+= xdryp.c yp_xdr.c yplib.c
|
|
CLEANFILES+= yp_xdr.c yp.h
|
|
|
|
RPCSRC= ${.DESTDIR}/usr/include/rpcsvc/yp.x
|
|
RPCGEN= rpcgen
|
|
|
|
yp_xdr.c: ${RPCSRC} yp.h
|
|
${RPCGEN} -c -o ${.TARGET} ${RPCSRC}
|
|
|
|
yp.h: ${RPCSRC}
|
|
${RPCGEN} -h -o ${.TARGET} ${RPCSRC}
|