# Make file for include 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/INETSVCS/indnetwk)

ROOT=

AINCLUDES= /usr/include/arpa/ftp.h \
	/usr/include/arpa/tftp.h \
	/usr/include/arpa/telnet.h

PINCLUDES= /usr/include/protocols/rwhod.h

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

include ${BUILDRULES}

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

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

default: all

all: clean build install

clean:

build: 
	
install:
	cd arpa ; \
	for file in $(AINCLUDES) ; do \
		$(INSTALLSCPT) $$file $(INSTALLDB) ;  \
	done
	cd protocols ; \
	for file in $(PINCLUDES) ; do \
		$(INSTALLSCPT) $$file $(INSTALLDB) ;  \
	done

