#
# @(#)Makefile	1.3	98/06/11
#
# Makefile for building the Java 2D gui demos directories
#

SUBDIRS = Arcs_Curves Clipping Colors Composite Fonts Images Mix Lines Paint Paths Transforms 
 
ACTIONS = all debug optimized classes
CLEANACTIONS = clean cleanall clobber clobberall

default : $(SUBDIRS)

everything : $(SUBDIRS) 

$(ACTIONS) ::
	@nmake -nologo action=$@ RELEASE=$(RELEASE)

$(CLEANACTIONS) ::
	@nmake -nologo everything action=$@ RELEASE=$(RELEASE)

$(SUBDIRS) $(OPTSUBDIRS) : FORCE
	cd $@
	nmake -nologo $(action) RELEASE=$(RELEASE)
	cd ..

FORCE :
