#
# @(#)GNUmakefile	1.4	98/02/17
#
# Makefile for building the Java 2D Demo subdirectories
#

BUILDDIR = ../../../..
include $(BUILDDIR)/Platform.gmk
include $(BUILDDIR)/makefiles/Defs.gmk

SUBDIRS = Arcs_Curves Clipping Colors Composite Fonts Images Mix Lines Paint Paths Transforms

all optimized debug clean clobber::
	@for i in $(SUBDIRS) ; do \
	    echo ">>>Recursively making "$$i" "$@" @ `date` ..."; \
	    cd $$i; $(MAKE) $@ RELEASE=$(RELEASE) FULL_VERSION=$(FULL_VERSION)\
            || exit 1; cd ..;  \
	    echo "<<<Finished Recursively making "$$i" "$@" @ `date`." ; \
	done

clobber clean::
