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

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

WROOT =	$(CD0_ROOT)/webstart/wizards
#
# the Targetdirs file is the AT&T target.dirs file in a makefile format.
# it defines TARGETDIRS and ROOTDIRS.
include $(SRC)/Targetdirs

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

WIZSCRIPTS = 	W00.findswap W03.setfilesys W05.cpiodisk

SCRIPTS =	$(WIZSCRIPTS)

WIZPROG =	$(WIZSCRIPTS:%=$(WROOT)/%)
#####

install all: $(SCRIPTS) $(WIZPROG)

$(WROOT)/%: %
	$(INS.exec)

clobber clean: 
	$(RM) $(WIZSCRIPTS)
	$(RM) $(WIZPROG)

.KEEP_STATE:

