30 lines
626 B
Makefile
30 lines
626 B
Makefile
|
|
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 $<
|
|
|
|
debugging.html: debugging
|
|
asciidoc -n $<
|
|
|
|
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:
|
|
find . -regex ".*\.\(aux\|out\|log\|toc\|bm\|pdf\|dvi\|log\|html\)" -exec rm '{}' \;
|