i3/docs/Makefile

27 lines
561 B
Makefile
Raw Normal View History

2009-04-28 15:10:20 -04:00
2011-07-31 16:19:46 -04:00
all: hacking-howto.html debugging.html userguide.html ipc.html multi-monitor.html wsbar.html refcard.pdf
2009-04-28 15:10:20 -04:00
2009-03-07 11:02:17 -05:00
hacking-howto.html: hacking-howto
asciidoc -a toc -n $<
2009-03-07 11:02:17 -05:00
2009-04-28 15:10:20 -04:00
debugging.html: debugging
asciidoc -n $<
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:
2011-07-24 16:43:50 -04:00
find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;