# Make file for netconfig.link 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=

PRODUCTS=/usr/newconfig/etc/hosts \
	/usr/newconfig/etc/inetd.conf \
	/usr/newconfig/var/adm/inetd.sec \
	/usr/newconfig/etc/networks \
	/usr/newconfig/etc/protocols \
	/usr/newconfig/etc/services \
	/usr/newconfig/etc/nsswitch.conf \
	/usr/examples/nsswitch/nssw.dnsfiles \
	/usr/examples/nsswitch/nssw.filesdns \
	/usr/examples/nsswitch/nssw.nisfiles

# 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:
	for file in $(PRODUCTS) ; do \
		$(INSTALLSCPT) $$file $(INSTALLDB) ;  \
	done
