]> git.sur5r.net Git - i3/i3/blob - docs/Makefile
Merge i3bar into next
[i3/i3] / docs / Makefile
1
2 all: hacking-howto.html debugging.html userguide.html ipc.html multi-monitor.html wsbar.html refcard.pdf
3
4 hacking-howto.html: hacking-howto
5         asciidoc -a toc -n $<
6
7 debugging.html: debugging
8         asciidoc -n $<
9
10 userguide.html: userguide
11         asciidoc -a toc -n $<
12
13 ipc.html: ipc
14         asciidoc -a toc -n $<
15
16 multi-monitor.html: multi-monitor
17         asciidoc -a toc -n $<
18
19 wsbar.html: wsbar
20         asciidoc -a toc -n $<
21
22 refcard.pdf: refcard.tex
23         pdflatex refcard.tex && pdflatex refcard.tex
24
25 clean:
26         find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;