# Make file for DEL-INFO 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=

DESTDIR=/NFS/prod_info/

PRODUCTS=/fileset_info/nfs \
	$(DESTDIR)copyright \
	$(DESTDIR)readme \
	$(DESTDIR)description \
	$(DESTDIR)vendor_desc

RTPRODUCTS=$(DESTDIR)Runtime/description

DVPRODUCTS=$(DESTDIR)Development/description

#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
	cd Runtime ; \
	for file in $(RTPRODUCTS) ; do \
		$(INSTALLSCPT) $$file $(INSTALLDB) ;  \
	done
	cd Development ; \
	for file in $(DVPRODUCTS) ; do \
		$(INSTALLSCPT) $$file $(INSTALLDB) ;  \
	done
