From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Compilation order. Help with makefiles, please! Date: Thu, 30 Aug 2007 15:45:56 -0400 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1188503185 14317 80.91.229.12 (30 Aug 2007 19:46:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 30 Aug 2007 19:46:25 +0000 (UTC) Cc: bug-cc-mode@gnu.org, acm@muc.de, Alan Mackenzie_JWA , emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 30 21:46:21 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IQpy4-00019M-5q for ged-emacs-devel@m.gmane.org; Thu, 30 Aug 2007 21:46:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IQpy3-0000a0-Nf for ged-emacs-devel@m.gmane.org; Thu, 30 Aug 2007 15:46:15 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IQpy0-0000Zk-Hc for emacs-devel@gnu.org; Thu, 30 Aug 2007 15:46:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IQpxy-0000ZX-G5 for emacs-devel@gnu.org; Thu, 30 Aug 2007 15:46:11 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IQpxy-0000ZU-6R for emacs-devel@gnu.org; Thu, 30 Aug 2007 15:46:10 -0400 Original-Received: from x-132-204-255-53.xtpr.umontreal.ca ([132.204.255.53] helo=ceviche.home) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IQpxr-00077R-Qm; Thu, 30 Aug 2007 15:46:05 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 4073BB4622; Thu, 30 Aug 2007 15:45:56 -0400 (EDT) In-Reply-To: (Richard Stallman's message of "Thu\, 30 Aug 2007 03\:15\:06 -0400") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) X-Detected-Kernel: Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:77428 Archived-At: > That is a valid argument. I guess we do need to put specific files in > lisp/Makefile.in. I wish it were not necessary, but it is. An "easy" solution is to prefer reading the newer .el files rather than the older .elc when `requiring' a file during byte-compilation. This way, in the example, if cc-engine.el is compiled before cc-langs.el, it's still OK because it will load the new cc-langs.el rather than the oild cc-langs.elc. Stefan