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

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

MEDROOT =	$(DISK0_ROOT)/webstart/media_kits

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

SUBDIRS = products solaris8_domestic solaris8_global

MEDFILES =	media_kits.toc_domestic media_kits.toc_global

MEDPROG =	$(MEDFILES:%=$(MEDROOT)/%)

#####
install all: $(MEDPROG) $(SUBDIRS)

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

$(SUBDIRS): FRC
	cd $@; pwd; $(MAKE) $(TARGET)
	
clobber clean: $(SUBDIRS) 
	$(RM) $(MEDPROG)
FRC:


.KEEP_STATE:

