# Make file for include/rpcsvc directory
#
# Things you might want to change.  Pass them in on the command line:
# ROOT - should point to the root where the commands will be installed
#        (e.g. /deliver/NFS/indnetwk)

ROOT=

PRODUCTS=/usr/include/rpcsvc/klm_prot.h \
	/usr/include/rpcsvc/nlm_prot.h \
	/usr/include/rpcsvc/rex.h \
	/usr/include/rpcsvc/rstat.h \
	/usr/include/rpcsvc/rusers.h \
	/usr/include/rpcsvc/rwall.h \
	/usr/include/rpcsvc/sm_inter.h \
	/usr/include/rpcsvc/spray.h \
	/usr/include/rpcsvc/yppasswd.h \
	/usr/include/rpcsvc/mount.h \
	/usr/include/rpcsvc/yp_prot.h \
	/usr/include/rpcsvc/ypclnt.h \
	/usr/include/rpcsvc/ypv1_prot.h \
	/usr/include/rpcsvc/ypupdate_prot.h

#Install database name
INSTALLDB=/source/NFS/$(LOGNAME)/config/installdb

#Script called to parse the install deliverable
INSTALLSCPT=/source/NFS/$(LOGNAME)/config/install_script

# Defaults file containing the shell, compiler options, etc
BUILDRULES=/source/NFS/$(LOGNAME)/config/defaults

include ${BUILDRULES}

default: all

all: clean build install

clean:

build:

install:
	for file in $(PRODUCTS) ; do \
		$(INSTALLSCPT) $$file $(INSTALLDB) ;  \
	done
