8959dd9fd9
linked with librpcsvc.
37 lines
853 B
Makefile
37 lines
853 B
Makefile
# $Id: Makefile,v 1.1.1.1 1996/06/05 04:36:54 wpaul Exp $
|
|
|
|
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
|
|
|
|
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>
|