From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jude DaShiell Subject: patch Makefile - show valid org-mode targets Date: Tue, 5 Jul 2011 05:26:55 -0400 (EDT) Message-ID: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55677) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qe1uF-0001KW-FH for emacs-orgmode@gnu.org; Tue, 05 Jul 2011 05:27:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qe1uE-0002I1-3r for emacs-orgmode@gnu.org; Tue, 05 Jul 2011 05:26:59 -0400 Received: from shellworld.net ([69.60.117.94]:62493 helo=server1.shellworld.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qe1uD-0002HQ-3x for emacs-orgmode@gnu.org; Tue, 05 Jul 2011 05:26:57 -0400 Received: from localhost (localhost [127.0.0.1]) by server1.shellworld.net (Postfix) with ESMTP id CC2C422852 for ; Tue, 5 Jul 2011 05:26:55 -0400 (EDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org diff -c ./a//Makefile ./b//Makefile *** ./a//Makefile 2011-07-03 11:06:04.000000000 -0400 --- ./b//Makefile 2011-07-05 05:22:13.000000000 -0400 *************** *** 513,515 **** --- 513,530 ---- 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 "Available targets for org-mode are as follows:" + @echo "make all - compile org lisp and documentation" + @echo "make install - install org" + @echo "make install-lisp - install org-mode lisp files" + @echo "make install-info - install org info file" + @echo "make install-info-debian - install info on old debian systems" + @echo "newer debian systems use ginstall" + @echo "make update - start org-mode update process with git pull" + @echo "make up2 - finish update to org on local system" + @echo "make compile - compile lisp files" + @echo "make doc - make documentation" + @echo "make pdf - make org-mode pdf documentation" + @echo "make card - make org-mode reference cards"