
DIRS = $(sort $(dir $(wildcard */Makefile)))

.PHONY:		$(DIRS)

default:	$(DIRS)

clean:		$(DIRS)

cleanall:	$(DIRS)

rebuild:	$(DIRS)

test:		$(DIRS)

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