link: Added example.xml and footnote style sheets
[docpond.git] / Makefile
1 ### Makefile ---
2
3 ## Author: Fredrik Unger <fred@tree.se>
4
5 TAGS=$(shell find . -type d -regex './[a-z]+')
6 clean_TAGS=$(addprefix clean_,$(TAGS))
7
8 all: $(TAGS)
9 clean: $(clean_TAGS)
10
11 .PHONY: $(TAGS) $(clean_TAGS)
12
13 $(TAGS):
14         make -f ../Makefile.tag -C $@
15
16 $(clean_TAGS):
17         make -f ../Makefile.tag -C $(patsubst clean_%,%,$@) clean
18
19 ### Makefile ends here