default .DEFAULT:
	for file in makefile.*; do \
		if [ -f "$$file" ]; then \
			$(MAKE) -f $$file $@; \
		fi \
	done
