Makefile: add `make targets' to document possible targets

Thanks to Jude DaShiell for this suggestion, and to Nick Dokos for
comments.
This commit is contained in:
Bastien Guerry 2011-07-05 11:27:13 +02:00
parent 330ed08feb
commit b109cbfab5
1 changed files with 17 additions and 0 deletions

View File

@ -513,3 +513,20 @@ lisp/org-vm.elc: lisp/org.el
lisp/org-w3m.elc: lisp/org.el
lisp/org-wl.elc: lisp/org.el
lisp/org-xoxo.elc: lisp/org-exp.el
# Describe valid make targets for org-mode.
targets help:
@echo "make - compile Org ELisp files"
@echo "make clean - clean Elisp and documentation files"
@echo "make all - compile Org ELisp files and documentation"
@echo ""
@echo "make doc - make all documentation"
@echo "make info - make Info documentation"
@echo "make html - make HTML documentation"
@echo "make pdf - make pdf documentation"
@echo "make card - make refcards documentation"
@echo ""
@echo "make install - install Org"
@echo "make install-lisp - install Org ELisp files"
@echo "make install-info - install Org Info file"
@echo "make install-info-debian - install info on old debian systems (newer use ginstall)"