]> git.sur5r.net Git - i3/i3/blobdiff - docs/Makefile
Merge branch 'master' into next
[i3/i3] / docs / Makefile
index 123f839f2a7682f05da9bf00010a170b4b3f6c62..990bba877d1869d3800f2d01d72266a72369ed92 100644 (file)
@@ -1,5 +1,5 @@
 
-all: hacking-howto.html debugging.html userguide.html
+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 $<
@@ -10,6 +10,20 @@ debugging.html: debugging
 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:
-       rm -f */*.{aux,log,toc,bm,pdf,dvi}
-       rm -f *.log *.html
+       find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;