Epple-II/doc/Makefile

21 lines
254 B
Makefile
Raw Normal View History

.SUFFIXES: .asciidoc .html
.asciidoc.html :
asciidoc -b html5 $<
all : doc
doc : index.html
2012-04-21 01:18:45 +00:00
index.html : *.asciidoc
clean :
rm -f index.html
2012-06-03 04:58:25 +00:00
.PHONY: site
2012-06-03 04:58:25 +00:00
site :
mkdir -p site
cp *.html *.png *.gif site
cp -R callouts site