SUBDIRS = $(shell find . -maxdepth 1 -type d ! -name ".*")

install:
	for d in $(SUBDIRS); do \
		echo $${d}; \
		( cd $${d} && $(MAKE) install ) \
	done
