813907f9ec
Note: this may cause some problems in a few cases. With very old versions of rpcgen, if you defined a procedure called foo, then rpcen would create client stubs for function foo_1() and server stubs _also_ with function foo_1(). This only worked because of the lack of ANSI prototypes: the client side stub takes different arguments than the server side stub. (The client side takes a CLIENT * handle, while the server side wants an svc_req *.) To fix this conflict, rpcgen in ANSI mode generates foo_1() for the client and foo_1_svc() for the server. RPC server code that depends on the old behavior might break because of this. (Fixing it is just a matter of adding the _svc suffix onto the server procedure names.)
35 lines
986 B
Makefile
35 lines
986 B
Makefile
# from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC
|
|
# $Id: Makefile,v 1.20 1998/01/16 11:51:19 bde Exp $
|
|
|
|
.SUFFIXES: .x
|
|
|
|
RPCCOM = rpcgen -C
|
|
|
|
HDRS= key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h \
|
|
rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h \
|
|
ypxfrd.h ypupdate_prot.h nis.h nis_cache.h nis_callback.h \
|
|
bootparam_prot.h crypt.h
|
|
XFILES= bootparam_prot.x key_prot.x klm_prot.x mount.x nfs_prot.x nlm_prot.x \
|
|
rex.x rnusers.x rquota.x rstat.x rwall.x sm_inter.x spray.x \
|
|
yppasswd.x yp.x ypxfrd.x ypupdate_prot.x nis.x nis_cache.x nis_object.x \
|
|
nis_callback.x crypt.x
|
|
HFILES= yp_prot.h ypclnt.h nis_db.h nis_tags.h nislib.h
|
|
|
|
CLEANFILES+= ${HDRS}
|
|
|
|
all: ${HDRS}
|
|
|
|
beforeinstall:
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${HFILES:S;^;${.CURDIR}/;} \
|
|
${XFILES:S;^;${.CURDIR}/;} \
|
|
${HDRS} \
|
|
${DESTDIR}/usr/include/rpcsvc
|
|
|
|
.x.h:
|
|
${RPCCOM} -h ${.IMPSRC} -o ${.TARGET}
|
|
|
|
nis.h: nis_object.x
|
|
|
|
.include <bsd.prog.mk>
|