From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jude DaShiell Subject: Makefile patch to show targets Date: Mon, 4 Jul 2011 18:12:15 -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]:46356) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QdrNL-00033r-11 for emacs-orgmode@gnu.org; Mon, 04 Jul 2011 18:12:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QdrNJ-0006tA-L3 for emacs-orgmode@gnu.org; Mon, 04 Jul 2011 18:12:18 -0400 Received: from shellworld.net ([69.60.117.94]:56605 helo=server1.shellworld.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QdrNJ-0006st-CB for emacs-orgmode@gnu.org; Mon, 04 Jul 2011 18:12:17 -0400 Received: from localhost (localhost [127.0.0.1]) by server1.shellworld.net (Postfix) with ESMTP id C0F032298E for ; Mon, 4 Jul 2011 18:12:15 -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 Only in ./b/: 1 Only in ./b/: 2 diff -c ./a//Makefile ./b//Makefile *** ./a//Makefile 2011-07-03 11:06:04.000000000 -0400 --- ./b//Makefile 2011-07-04 18:02:29.000000000 -0400 *************** *** 513,515 **** --- 513,527 ---- 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 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"