Epple-II/doc/Makefile
Christopher Mosher d867b4d84d fix asciidoc deps
2012-04-20 21:18:45 -04:00

22 lines
278 B
Makefile

.SUFFIXES: .asciidoc .html
.asciidoc.html :
asciidoc -b html5 $<
all : doc
doc : index.html
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