gri3-wm/docs/Makefile

32 lines
710 B
Makefile
Raw Normal View History

# 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
$(ASCIIDOC) -a toc -n $<
2009-03-07 17:02:17 +01:00
2009-04-28 21:10:20 +02:00
debugging.html: debugging
$(ASCIIDOC) -n $<
2009-04-28 21:10:20 +02:00
userguide.html: userguide
$(ASCIIDOC) -a toc -n $<
2011-09-24 18:20:36 +02:00
testsuite.html: testsuite
$(ASCIIDOC) -a toc -n $<
2011-09-24 18:20:36 +02: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 22:43:50 +02:00
find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;