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

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

PARTROOT = $(DISK0_ROOT)/webstart/kiosk/parts

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

PARTFILES =	blank.html errorPage.html minimize.html \
		installKiosk.html

PARTPROG =	$(PARTFILES:%=$(PARTROOT)/%)

#####

all install: $(PARTPROG)


clean clobber:
	$(RM) $(PARTPROG)

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

.KEEP_STATE:

