X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=docs%2FMakefile;h=9d70243df13be1154cb72a2d97bb1f0cae252535;hb=0c367f9e4c67b77420b98a93b5d0e7ab08e695af;hp=276cc7ca7039e34708c6a56d624ff6ab8d62e090;hpb=4dd1a7e181eacd32239cc0326ba2b99c3370ec93;p=i3%2Fi3 diff --git a/docs/Makefile b/docs/Makefile index 276cc7ca..9d70243d 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,4 +1,26 @@ + +all: hacking-howto.html debugging.html userguide.html ipc.html multi-monitor.html wsbar.html refcard.pdf + 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 $< + +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 '{}' \;