mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-12-29 00:31:40 +00:00
21 lines
254 B
Makefile
21 lines
254 B
Makefile
.SUFFIXES: .asciidoc .html
|
|
|
|
.asciidoc.html :
|
|
asciidoc -b html5 $<
|
|
|
|
all : doc
|
|
|
|
doc : index.html
|
|
|
|
index.html : *.asciidoc
|
|
|
|
clean :
|
|
rm -f index.html
|
|
|
|
.PHONY: site
|
|
|
|
site :
|
|
mkdir -p site
|
|
cp *.html *.png *.gif site
|
|
cp -R callouts site
|