#
# @(#)GNUmakefile	1.3 98/05/04
#
# Build native and green threads HPI (Host Posting Interface, in case
# you were wondering).
#

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

#
# Build specified HPI implementations. There is a graceful default in
# Defs-solaris.gmk.
#
SUBDIRS = $(HPIS)

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