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

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

OSROOT=		$(DISK0_ROOT)/webstart/os/5.8/meta_clusters

#
# the Targetdirs file is the AT&T target.dirs file in a makefile format.
# it defines TARGETDIRS and ROOTDIRS.

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

OSFILES =	os.core.1 os.developer.3 os.enduser.2 os.entire.4 os.oem.5

OSPROG =	$(OSFILES:%=$(OSROOT)/%)

#####
install all: $(OSPROG)

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

clobber clean:
		$(RM) $(OSPROG)

.KEEP_STATE:

