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

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

KIOSKROOT = $(DISK0_ROOT)/webstart/kiosk/content/graphics

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

IMGFILES =	LogoWhite.jpg additionalProducts.gif \
		cd.jpg insertCD.gif typeOfInstall.gif

IMGPROG =	$(IMGFILES:%=$(KIOSKROOT)/%)

#####

all install: $(SUBDIRS) $(IMGPROG)


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

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

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

FRC:

.KEEP_STATE:

