# Makesubdirs
#QUIET=-s -S
QUIET=-S

build debug destroy print config::
	@for dir in $(SUBDIRS); \
	 do \
		if [ -d $$dir ]; then \
		$(MAKE) -C $$dir $(QUIET) $@; \
		if [ $$? -ne 0 ]; then \
			exit 1; \
		fi; \
		fi;\
	 done
