#
# @(#)Makefile	2.3 88/08/11 4.0 RPCSRC
#
#
RPCCOM = $(DESTDIR)/usr/bin/rpcgen
LIB = -lrpclib

DESTDIR=
CFLAGS= -O2
LDFLAGS=

HDRS= key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rquota.h rusers.h\
      rquota.h rstat.h sm_inter.h spray.h yppasswd.h yp.h
XFILES= bootparam_prot.x key_prot.x klm_prot.x mount.x nfs_prot.x nlm_prot.x \
      rex.x rusers.x rquota.x rstat.x sm_inter.x spray.x yppasswd.x yp.x
EXT=.exe
BIN= rstat${EXT}
#SVCBIN= rstat_svc${EXT}
SVCBIN=
GEN= rstat_clnt.c rstat_svc.c rstat_xdr.c

all:	$(HDRS) $(BIN) $(SVCBIN)

install: $(HDRS) $(XFILES)
	@echo "Creating RPC service headers directory"
	-mkdir -p ${DESTDIR}/usr/include/rpcsvc && \
		chmod 755 ${DESTDIR}/usr/include/rpcsvc
	@echo "Installing RPC service header and definition files"
	for i in $(HDRS) $(XFILES); do \
		(install -c -m 644 $$i ${DESTDIR}/usr/include/rpcsvc) done
	-mkdir -p ${DESTDIR}/etc && \
		chmod 755 ${DESTDIR}/etc
	@if [ "${SVCBIN}" != "" ]; then \
		echo "Installing ${SVCBIN} in ${DESTDIR}/etc"; \
		install -c -s ${SVCBIN} ${DESTDIR}/usr/sbin/${SVCBIN}; \
	fi;
	@echo "Installing ${BIN} in ${DESTDIR}/usr/bin"
	@mkdir -p ${DESTDIR}/usr/bin
	install -c -s ${BIN} ${DESTDIR}/usr/bin/${BIN}

${SVCBIN}: rstat_proc.o rstat_svc.o rstat_xdr.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ rstat_proc.o rstat_svc.o rstat_xdr.o $(LIB)

${BIN}: rstat.o rstat_clnt.o rstat_xdr.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ rstat.o rstat_clnt.o rstat_xdr.o $(LIB)

rstat.c rstat_proc.c:	rstat.h

key_prot.h:	key_prot.x
	$(RPCCOM) -h key_prot.x -o $@
klm_prot.h:	klm_prot.x
	$(RPCCOM) -h klm_prot.x -o $@
mount.h:	mount.x
	$(RPCCOM) -h mount.x -o $@
nfs_prot.h:	nfs_prot.x
	$(RPCCOM) -h nfs_prot.x -o $@
nlm_prot.h:	nlm_prot.x
	$(RPCCOM) -h nlm_prot.x -o $@
rex.h:	rex.x
	$(RPCCOM) -h rex.x -o $@
rusers.h:	rusers.x
	$(RPCCOM) -h rusers.x -o $@
rquota.h:	rquota.x
	$(RPCCOM) -h rquota.x -o $@
rstat.h:	rstat.x
	$(RPCCOM) -h rstat.x -o $@
sm_inter.h:	sm_inter.x
	$(RPCCOM) -h sm_inter.x -o $@
spray.h:	spray.x
	$(RPCCOM) -h spray.x -o $@
yp.h:	yp.x
	$(RPCCOM) -h yp.x -o $@
yppasswd.h:	yppasswd.x
	$(RPCCOM) -h yppasswd.x -o $@

rstat_clnt.c:	rstat.x
	$(RPCCOM) -l rstat.x -o $@
rstat_svc.c:	rstat.x
	$(RPCCOM) -s udp rstat.x -o $@
rstat_xdr.c:	rstat.x
	$(RPCCOM) -c rstat.x -o $@

clean cleanup:
	rm -f *.o $(GEN) $(HDRS) $(BIN) $(SVCBIN)
