mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
a60dc5e0f9
- use rpcgen to generate unmodified code instead of havinf it in the repository - use "natural" function names to avoid conflicts with prototypes etc.
27 lines
505 B
Makefile
27 lines
505 B
Makefile
# $Id: Makefile,v 1.1.1.1 1996/02/17 15:11:28 peter Exp $
|
|
|
|
PROG = rpc.statd
|
|
SRCS = file.c sm_inter_svc.c statd.c procs.c
|
|
MAN8 = rpc.statd.8
|
|
|
|
DPADD= ${LIBRPCSVC}
|
|
LDADD= -lrpcsvc
|
|
|
|
CFLAGS+= -I.
|
|
|
|
CLEANFILES= sm_inter_svc.c sm_inter.h
|
|
|
|
RPCSRC= ${.DESTDIR}/usr/include/rpcsvc/sm_inter.x
|
|
RPCGEN= rpcgen -L -C
|
|
|
|
sm_inter_svc.c: ${RPCSRC} sm_inter.h
|
|
${RPCGEN} -m -o ${.TARGET} ${RPCSRC}
|
|
|
|
sm_inter.h: ${RPCSRC}
|
|
${RPCGEN} -h -o ${.TARGET} ${RPCSRC}
|
|
|
|
test: test.c
|
|
cc -o test test.c -lrpcsvc
|
|
|
|
.include <bsd.prog.mk>
|