mirror of
https://github.com/cmosher01/Epple-II.git
synced 2025-01-01 04:29:18 +00:00
20 lines
297 B
Makefile
20 lines
297 B
Makefile
SUFFIXES = .asciidoc .html
|
|
|
|
.asciidoc.html :
|
|
asciidoc -b html5 -a VERSION=@VERSION@ $<
|
|
|
|
|
|
|
|
.PHONY : html install-html clean
|
|
|
|
html : index.html
|
|
|
|
index.html : *.asciidoc
|
|
|
|
install-html :
|
|
mkdir -p $(htmldir)
|
|
cp -R *.html *.png *.gif callouts $(htmldir)
|
|
|
|
clean :
|
|
rm -f index.html
|