Epple-II/doc/Makefile
2012-04-20 20:44:14 -04:00

20 lines
251 B
Makefile

.SUFFIXES: .asciidoc .html
.asciidoc.html :
asciidoc -b html5 $<
all : doc
doc : index.html
clean :
rm -f index.html
install :
mkdir -p deploy
cp *.html *.png *.gif deploy
cp -R callouts deploy
uninstall :
rm -Rf deploy