modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / lib / uthash / doc / Makefile
blob06ecf8006dc010fd08df3219338ba67559a7bfd9
1 HTML=$(patsubst %.txt,%.html,$(wildcard *.txt))
3 all: $(HTML)
5 # when each target of a multi-target rule has its own prereq
6 # we use a static pattern rule.
7 $(HTML): %.html: %.txt
8 asciidoc -a toc2 $<
10 TMP=/tmp/uthash-gh-pages
11 stage:
12 mkdir -p ${TMP}
13 rm -if ${TMP}/*
14 cp *.html *.css *.png ${TMP}
16 .PHONY: clean
17 clean:
18 $(RM) $(HTML)