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

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

LAYROOT = $(DISK0_ROOT)/webstart/kiosk/layers

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

LAYFILES =	intro.html kiosk.html menuArea.html topArea.html \
		netscapebug.html rename.html

LAYPROG =	$(LAYFILES:%=$(LAYROOT)/%)

#####

all install: $(LAYPROG)


clean clobber:
	$(RM) $(LAYPROG)

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

.KEEP_STATE:

