include Config.mk

#
# Order is important.
#

DIRS = src/xposix \
       src/exactly \
       src/flyisofs \
       src/shunt


TARGETS = all clean clobber

$(TARGETS):
	@for i in $(DIRS) ; do \
		(cd $$i && $(MAKE) $@) ;\
	done

debug:
	@$(MAKE) DEBUG=1

profile:
	@$(MAKE) DEBUG=1 PROFILE=1


.PHONY: $(TARGETS) debug profile
