]> git.sur5r.net Git - i3/i3/blobdiff - docs/Makefile
Merge branch 'master' into next
[i3/i3] / docs / Makefile
index 50808a8ca9fb61c5343c33e196328612e35cba10..990bba877d1869d3800f2d01d72266a72369ed92 100644 (file)
@@ -1,5 +1,5 @@
 
-all: hacking-howto.html debugging.html userguide.html ipc.html multi-monitor.html wsbar.html tree-migrating.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,10 +10,9 @@ debugging.html: debugging
 userguide.html: userguide
        asciidoc -a toc -n $<
 
-tree-migrating.html: tree-migrating
+testsuite.html: testsuite
        asciidoc -a toc -n $<
 
-
 ipc.html: ipc
        asciidoc -a toc -n $<
 
@@ -23,6 +22,8 @@ multi-monitor.html: multi-monitor
 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 '{}' \;