14 lines
199 B
Makefile
14 lines
199 B
Makefile
|
|
all: hacking-howto.html debugging.html
|
|
|
|
hacking-howto.html: hacking-howto
|
|
asciidoc -n $<
|
|
|
|
debugging.html: debugging
|
|
asciidoc -n $<
|
|
|
|
|
|
clean:
|
|
rm -f */*.{aux,log,toc,bm,pdf,dvi}
|
|
rm -f *.log *.html
|