replace the refcard with an HTML version (by SardemFF7)

This eliminates our build-depedency on latex.
This commit is contained in:
Michael Stapelberg
2012-04-12 16:01:10 +02:00
parent 1bb165a29a
commit 41d034a6db
7 changed files with 194 additions and 116 deletions

View File

@ -1,7 +1,9 @@
# To pass additional parameters for asciidoc
ASCIIDOC=asciidoc
all: hacking-howto.html debugging.html debugging-release-version.html userguide.html ipc.html multi-monitor.html wsbar.html refcard.pdf testsuite.html i3bar-protocol.html
ASCIIDOC_TARGETS:=hacking-howto.html debugging.html debugging-release-version.html userguide.html ipc.html multi-monitor.html wsbar.html testsuite.html i3bar-protocol.html
all: ${ASCIIDOC_TARGETS}
hacking-howto.html: hacking-howto
$(ASCIIDOC) -a toc -n $<
@ -30,8 +32,5 @@ multi-monitor.html: multi-monitor
wsbar.html: wsbar
$(ASCIIDOC) -a toc -n $<
refcard.pdf: refcard.tex
pdflatex refcard.tex && pdflatex refcard.tex
clean:
find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;
rm -f ${ASCIIDOC_TARGETS}