summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-07-05 11:27:13 +0200
committerBastien Guerry <bzg@altern.org>2011-07-05 11:27:13 +0200
commitb109cbfab54413a24aa7c0417c3b91bbff4b6982 (patch)
treeb9b344b5ad0f0f1f14e9533d674f647c9e000f35
parent330ed08febf6ac6b34c8d9b0bad2bff07d6fef6e (diff)
downloadorg-mode-b109cbfab54413a24aa7c0417c3b91bbff4b6982.tar.gz
Makefile: add `make targets' to document possible targets
Thanks to Jude DaShiell for this suggestion, and to Nick Dokos for comments.
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 239ab2e..742b821 100644
--- a/Makefile
+++ b/Makefile
@@ -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)"