]> git.sur5r.net Git - i3/i3/blobdiff - docs/Makefile
Merge branch 'master' into next
[i3/i3] / docs / Makefile
index 276cc7ca7039e34708c6a56d624ff6ab8d62e090..990bba877d1869d3800f2d01d72266a72369ed92 100644 (file)
@@ -1,4 +1,29 @@
+
+all: hacking-howto.html debugging.html userguide.html ipc.html multi-monitor.html wsbar.html refcard.pdf testsuite.html
+
 hacking-howto.html: hacking-howto
+       asciidoc -a toc -n $<
+
+debugging.html: debugging
        asciidoc -n $<
 
-all: hacking-howto.html
+userguide.html: userguide
+       asciidoc -a toc -n $<
+
+testsuite.html: testsuite
+       asciidoc -a toc -n $<
+
+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:
+       find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;