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

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

STYLEROOT = $(DISK0_ROOT)/webstart/kiosk/styles

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

STYLEFILES =	configStyle.css dialogStyle.css menuArea.css \
	        topArea.css contentStyles.css introStyle.css \
		proxyStyle.css

STYLEPROG =	$(STYLEFILES:%=$(STYLEROOT)/%)

#####

all install: $(STYLEPROG)


clean clobber:
	$(RM) $(STYLEPROG)

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

.KEEP_STATE:

