exclude_dirs=. CVS CVSROOT config
subdirs=$(shell find . -type d -maxdepth 1 -name "*"$(foreach f, $(exclude_dirs), -a -not -name "$f"))

all:
	@$(foreach f, $(subdirs), make -C $f objects;)

clean:
	@$(foreach f, $(subdirs), make -C $f clean;)
