mirror of
https://github.com/cmosher01/Epple-II.git
synced 2025-01-14 12:33:45 +00:00
22 lines
278 B
Makefile
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
|