mirror of
https://github.com/cmosher01/Epple-II.git
synced 2025-01-10 02:30:17 +00:00
20 lines
251 B
Makefile
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
|