#
#ident  "@(#)Makefile 1.5     97/04/30 SMI"
#
# Copyright 1996 Sun Microsystems, Inc. All Rights Reserved
#

# include global definitions
include $(SRC)/Makefile.master

JSROOT =	$(DISK0_ROOT)/webstart/kiosk/jslib/.private

all :=          TARGET= all
install :=      TARGET= install
check :=        TARGET= check
clean :=        TARGET= clean
clobber :=      TARGET= clobber
lint :=         TARGET= lint

JSFILES =	cd0Intro.js \
		cd0Content.js cd0Main.js proxySetup.js \
		cd0Init.js cd0Objects.js topArea.js \
		installPortal.js

JSPROG =	$(JSFILES:%=$(JSROOT)/%)

#####

all install: $(JSPROG)


clean clobber: $(SUBDIRS)
		$(RM) $(JSPROG)

$(JSROOT)/%: %
	$(INS.file)

$(SUBDIRS): FRC
	cd $@; pwd; $(MAKE) $(TARGET)

FRC:


.KEEP_STATE:

