From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: kgold@watson.ibm.com (kgold) Newsgroups: gmane.emacs.help Subject: Re: emacs as an ide Date: 9 Oct 2003 18:52:20 GMT Organization: IBM T.J. Watson Research Center Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1065727222 25282 80.91.224.253 (9 Oct 2003 19:20:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Oct 2003 19:20:22 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 09 21:20:21 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A7gKi-0004Yv-00 for ; Thu, 09 Oct 2003 21:20:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1A7gGE-0007E4-T6 for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Oct 2003 15:15:42 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.cs.utexas.edu!geraldo.cc.utexas.edu!an02.austin.ibm.com!ausnews.austin.ibm.com!newsfeed.btv.ibm.com!news.btv.ibm.com!alpha.watson.ibm.com!kgold Original-Newsgroups: gnu.emacs.help Original-Lines: 19 Original-NNTP-Posting-Host: alpha.watson.ibm.com Original-X-Trace: news.btv.ibm.com 1065725540 12592 9.2.16.245 (9 Oct 2003 18:52:20 GMT) Original-X-Complaints-To: news@btv.ibm.com Original-NNTP-Posting-Date: 9 Oct 2003 18:52:20 GMT X-Newsreader: xrn 9.02 Original-Xref: shelby.stanford.edu gnu.emacs.help:117171 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:13099 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:13099 M-x compile runs make as the default. M-x next-error steps through the errors (also works after grep) For single key stokes, I use: (global-set-key [pause] 'compile) (global-set-key [C-pause] 'next-error) "Martin" writes: > > I want to use emacs as an ide. I can see how to set it up to simply compile > the current file, but I would also like to be able to build projects (ie. > compile multiple files and then link them), and build a solution - ie build > multiple projects. > > Is it possible to add buttons or menu options that execute appropriate make > commands? Also would it still be able to hook up any compile error messages > with the appropriate source file?