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