#
# @(#)GNUmakefile	1.1	98/11/17
#
# Makefile for building TestProduct's subdirectories
#

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

SUBDIRS = AlphaComposite Clipping Color Font Geom Image Paint Paint Stroke XORmode

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::
