i3/docs/Makefile

32 lines
710 B
Makefile
Raw Normal View History

# To pass additional parameters for asciidoc
ASCIIDOC=asciidoc
2009-04-28 15:10:20 -04:00
2011-09-24 12:20:36 -04:00
all: hacking-howto.html debugging.html userguide.html ipc.html multi-monitor.html wsbar.html refcard.pdf testsuite.html
2009-04-28 15:10:20 -04:00
2009-03-07 11:02:17 -05:00
hacking-howto.html: hacking-howto
$(ASCIIDOC) -a toc -n $<
2009-03-07 11:02:17 -05:00
2009-04-28 15:10:20 -04:00
debugging.html: debugging
$(ASCIIDOC) -n $<
2009-04-28 15:10:20 -04:00
userguide.html: userguide
$(ASCIIDOC) -a toc -n $<
2011-09-24 12:20:36 -04:00
testsuite.html: testsuite
$(ASCIIDOC) -a toc -n $<
2011-09-24 12:20:36 -04:00
ipc.html: ipc
$(ASCIIDOC) -a toc -n $<
multi-monitor.html: multi-monitor
$(ASCIIDOC) -a toc -n $<
wsbar.html: wsbar
$(ASCIIDOC) -a toc -n $<
refcard.pdf: refcard.tex
pdflatex refcard.tex && pdflatex refcard.tex
clean:
2011-07-24 16:43:50 -04:00
find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;