# EPOS Mediators Makefile
#
# Author: Guto

include $(EPOS)/makedefs

SUBDIRS = cpu node

all:		$(SUBDIRS)

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

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

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

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

FORCE:
