Epple-II/doc/Makefile

22 lines
278 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
install :
mkdir -p deploy
cp *.html *.png *.gif deploy
cp -R callouts deploy
uninstall :
rm -Rf deploy