]> git.sur5r.net Git - i3/i3/blob - docs/Makefile
Merge branch 'next'
[i3/i3] / docs / Makefile
1
2 all: hacking-howto.html debugging.html userguide.html ipc.html multi-monitor.html wsbar.html tree-migrating.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 tree-migrating.html: tree-migrating
14         asciidoc -a toc -n $<
15
16
17 ipc.html: ipc
18         asciidoc -a toc -n $<
19
20 multi-monitor.html: multi-monitor
21         asciidoc -a toc -n $<
22
23 wsbar.html: wsbar
24         asciidoc -a toc -n $<
25
26 refcard.pdf: refcard.tex
27         pdflatex refcard.tex && pdflatex refcard.tex
28
29 clean:
30         find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;