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

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

CONTENTROOT = $(DISK0_ROOT)/webstart/kiosk/content
all :=          TARGET= all
install :=      TARGET= install
check :=        TARGET= check
clean :=        TARGET= clean
clobber :=      TARGET= clobber
lint :=         TARGET= lint

SUBDIRS =	graphics 

HTMLFILES =	content0.html whatsnew.html \
		acpi.html ami.html appcert.html bandwidth.html \
		cluster.html io.html ipsec.html ipv6.html java.html \
		ldap.html memory.html mgtconsole.html pci.html \
		poll.html rbac.html realtime.html resourcemgr.html \
		slp.html usb.html wbem.html wizards.html overview.html \
		additionalCD.html releaseNotesPointer.html 

HTMLPROG =	$(HTMLFILES:%=$(CONTENTROOT)/%)

#####

all install: $(SUBDIRS) $(HTMLPROG)


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

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

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

FRC:

.KEEP_STATE:

