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

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

CDKROOT = $(ROOT)/devtools

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

#####

CDKSCRIPTS =	cd0_setup install_files install_products \
		disk0_setup install_kiosk install_wizards \
		install_cd0 install_locales install_disk0 \
		install_netscape 

SCRIPTS =	$(CDKSCRIPTS)

CDKPROG =	$(CDKSCRIPTS:%=$(CDKROOT)/%)

.KEEP_STATE:

all install: $(SCRIPTS) $(CDKPROG)

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

clobber clean:
	$(RM) $(CDKSCRIPTS)
	$(RM) $(CDKPROG)

.KEEP_STATE:

