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

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

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

PKGROOT = 	$(CD0_ROOT)/webstart/pkgs

PKGFILES = 	de.pkgs es.pkgs ja.pkgs sv.pkgs zh_TW.pkgs \
		fr.pkgs it.pkgs ko.pkgs zh.pkgs

PKGPROG = 	$(PKGFILES:%=$(PKGROOT)/%)

SUBDIRS = C de es fr it ja ko sv zh zh_TW

#####

all install: $(SUBDIRS) $(PKGPROG)

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

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

clobber clean: $(SUBDIRS)

FRC:


.KEEP_STATE:

