From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: pjb@informatimago.com (Pascal J. Bourguignon) Newsgroups: gmane.emacs.help Subject: Re: is there a good way to do emacs project management ? Date: Wed, 15 Apr 2009 23:48:13 +0200 Organization: Informatimago Message-ID: <87myahfv1e.fsf@galatea.local> References: <5f844ff2-7af5-4522-86a4-c3329c41f83d@v35g2000pro.googlegroups.com> <87ocuygyn9.fsf@galatea.local> <49e63013$0$90267$14726298@news.sunsite.dk> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1239835258 27620 80.91.229.12 (15 Apr 2009 22:40:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 15 Apr 2009 22:40:58 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Apr 16 00:42:17 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LuDo7-0002iY-1l for geh-help-gnu-emacs@m.gmane.org; Thu, 16 Apr 2009 00:42:15 +0200 Original-Received: from localhost ([127.0.0.1]:49402 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LuDmi-0002Gd-E5 for geh-help-gnu-emacs@m.gmane.org; Wed, 15 Apr 2009 18:40:48 -0400 Original-Path: news.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.freenet.de!217.188.199.168.MISMATCH!takemy.news.telefonica.de!telefonica.de!news.cs.univ-paris8.fr!proxad.net!feeder1-2.proxad.net!cleanfeed1-a.proxad.net!nnrp8-2.free.fr!not-for-mail Original-Newsgroups: gnu.emacs.help Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAQMAAABtzGvEAAAABlBMVEUAAAD///+l2Z/dAAAA oElEQVR4nK3OsRHCMAwF0O8YQufUNIQRGIAja9CxSA55AxZgFO4coMgYrEDDQZWPIlNAjwq9 033pbOBPtbXuB6PKNBn5gZkhGa86Z4x2wE67O+06WxGD/HCOGR0deY3f9Ijwwt7rNGNf6Oac l/GuZTF1wFGKiYYHKSFAkjIo1b6sCYS1sVmFhhhahKQssRjRT90ITWUk6vvK3RsPGs+M1RuR mV+hO/VvFAAAAABJRU5ErkJggg== X-Accept-Language: fr, es, en X-Disabled: X-No-Archive: no User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/22.3 (darwin) Cancel-Lock: sha1:NGJjZDljMjgxM2E5MWYwOGQ5ODlhMTJlNjk3YTNiZGMyNmMxYWFlYw== Original-Lines: 30 Original-NNTP-Posting-Date: 15 Apr 2009 23:48:14 MEST Original-NNTP-Posting-Host: 88.182.134.169 Original-X-Trace: 1239832094 news-2.free.fr 16624 88.182.134.169:61221 Original-X-Complaints-To: abuse@proxad.net Original-Xref: news.stanford.edu gnu.emacs.help:168491 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:63765 Archived-At: "Colin S. Miller" writes: > Pascal J. Bourguignon wrote: >> halida writes: >> >>> I use emacs to do some coding, and text editing, >>> When I create a new coding project, I simply create a new folder, >>> and add source code into it. >>> The problem is, with multi-forders, it is hard to change back to the >>> top, >>> and run the makefile. >> Type: M-x compile RET C-e SPC -C >> /path/to/the/directory/where/is/Makefile RET >> then to recompile: M-x recompile RET >> from any directory... >> > > I use > > cd /path/to/make/file && make -f Makefile > > as my build command. Indeed, this way is more portable, since it works even with non GNU make. But: make -C /path/to/dir/where/makefile/is is conceptually simplier, when you have GNU make. -- __Pascal Bourguignon__