Improve the clean targets in the Makefile.

"make clean" does now also remove any release-related files,
but it does keep org-install.el.

"make cleanall" does also remove org-install.el.
This commit is contained in:
Carsten Dominik 2008-10-12 15:27:07 +02:00
parent a5b97f431e
commit 0306f1878d
1 changed files with 10 additions and 1 deletions

View File

@ -261,11 +261,20 @@ cleandoc:
(cd doc; rm -f *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps)
(cd doc; rm -f orgcard_letter.tex orgcard_letter.pdf)
(cd doc; rm -rf manual)
cleanrel:
rm -rf RELEASEDIR
rm -rf org-6.*
rm -f org-6*zip org-6*tar.gz
clean:
make cleanelc
make cleandoc
make cleanrel
rm -f *~ */*~ */*/*~
rm -rf RELEASEDIR
cleanall:
make clean
rm -f lisp/org-install.el
.el.elc: