gri3-wm/docs/Makefile

27 lines
561 B
Makefile
Raw Normal View History

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