# EPOS Abstractions Makefile
#
# Author: Guto

include $(EPOS)/makedefs

SUBDIRS = address_space bus channel communicator envelope handler network\
	  segment synchronizer task thread timer

all:		$(SUBDIRS)

$(SUBDIRS):	FORCE
		(cd $@ && $(MAKE))

test:
		$(MAKE) MAKE="$(MAKE) test"

print:
		$(MAKE) MAKE="$(MAKE) print"

clean:
		$(MAKE) MAKE="$(MAKE) -i clean"

FORCE:
