NOTDIRS := CVS scripts DBUtils
SUBDIRS := $(filter-out $(NOTDIRS),$(shell find * -type d -maxdepth 0))


all run: $(SUBDIRS)


.PHONY: all $(SUBDIRS) run


$(SUBDIRS):
	$(MAKE) -C $@ $(MAKECMDGOALS)


