### Makefile --- ## Author: Fredrik Unger TAGS=$(shell find . -type d -regex './[a-z]+') clean_TAGS=$(addprefix clean_,$(TAGS)) all: $(TAGS) clean: $(clean_TAGS) .PHONY: $(TAGS) $(clean_TAGS) $(TAGS): make -f ../Makefile.tag -C $@ $(clean_TAGS): make -f ../Makefile.tag -C $(patsubst clean_%,%,$@) clean ### Makefile ends here