From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Geralt Newsgroups: gmane.emacs.help Subject: Emacs 23 - how to use flymake in a non-trivial project? Date: Thu, 6 Aug 2009 20:43:16 +0200 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1249584302 2036 80.91.229.12 (6 Aug 2009 18:45:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Aug 2009 18:45:02 +0000 (UTC) To: Emacs Help List Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Aug 06 20:44:55 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 1MZ7xO-0005lV-Rr for geh-help-gnu-emacs@m.gmane.org; Thu, 06 Aug 2009 20:44:55 +0200 Original-Received: from localhost ([127.0.0.1]:39171 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MZ7xO-0005uG-AI for geh-help-gnu-emacs@m.gmane.org; Thu, 06 Aug 2009 14:44:54 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MZ7vv-0005DC-PU for help-gnu-emacs@gnu.org; Thu, 06 Aug 2009 14:43:23 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MZ7vr-0005B7-8W for help-gnu-emacs@gnu.org; Thu, 06 Aug 2009 14:43:23 -0400 Original-Received: from [199.232.76.173] (port=45965 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MZ7vr-0005B2-1Q for help-gnu-emacs@gnu.org; Thu, 06 Aug 2009 14:43:19 -0400 Original-Received: from mail-ew0-f211.google.com ([209.85.219.211]:39553) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MZ7vq-00019O-IY for help-gnu-emacs@gnu.org; Thu, 06 Aug 2009 14:43:18 -0400 Original-Received: by ewy7 with SMTP id 7so776442ewy.42 for ; Thu, 06 Aug 2009 11:43:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=k7qMoN1nLe0VogS5YZ9ul/WGuSJk/NfccwTzHN+sE/c=; b=qnDse7Aqmm4ijHykU+ZaBaWksxckdQvQJzpbNI8dcpQQ8WFPmZYzMLxGtvb4Zv/4oF npEJW/F2HAqHA8FyJwuO7xNV+bcpZHdWZHfrxJecDxkeX6qgap4AvwDr0+2Cj9/wBVj+ 5ln9y7f8bxc3y6naxeO8RAp7lKsQppvFVYrFM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=P44YFCabnZo905NLuhfBvRSoexo2AxrK5mU65drqHROPXHL52AiP38esfA8YGAt7hg hpR7OwCtBdqJaXP7cqoOBnfbzVH49+XtqEG1+YqRCtO2uaAmFZ7F/41+IkOXOLqXalK1 1otuFY31sBLbEQClkjbZ1C61hKeGKSn+hAHvc= Original-Received: by 10.216.21.205 with SMTP id r55mr36246wer.175.1249584196270; Thu, 06 Aug 2009 11:43:16 -0700 (PDT) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:66865 Archived-At: Hi, my C projects are using the autotools und to keep my source directories clean from temp file I always have a build/ subdirectory in which I run ../configure (actually I don't run configure all the time, but that's the way the dir is initialized) and then in this dir make -k to build my project. Is there a way to tell flymake the command it should run for all .c/.h files below a directory? Currently I can't use flymake because it can't find a Makefile for my source files (because it only looks into the (sub)-directory). Thanks, Geralt.