From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] Changes to emacs/nt/INSTALL,v Date: Thu, 10 Apr 2008 11:36:58 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1207820255 4762 80.91.229.12 (10 Apr 2008 09:37:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 10 Apr 2008 09:37:35 +0000 (UTC) Cc: Eli Zaretskii , Emacs Devel To: "Jason Rumney" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 10 11:38:07 2008 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 1JjtE8-0005Bv-Hn for ged-emacs-devel@m.gmane.org; Thu, 10 Apr 2008 11:37:52 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JjtDU-0001g2-TV for ged-emacs-devel@m.gmane.org; Thu, 10 Apr 2008 05:37:12 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JjtDK-0001dx-Ad for emacs-devel@gnu.org; Thu, 10 Apr 2008 05:37:02 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JjtDI-0001dj-1c for emacs-devel@gnu.org; Thu, 10 Apr 2008 05:37:01 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JjtDH-0001dg-Qd for emacs-devel@gnu.org; Thu, 10 Apr 2008 05:36:59 -0400 Original-Received: from wr-out-0506.google.com ([64.233.184.231]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JjtDH-0000bV-FM for emacs-devel@gnu.org; Thu, 10 Apr 2008 05:36:59 -0400 Original-Received: by wr-out-0506.google.com with SMTP id 57so3231498wri.12 for ; Thu, 10 Apr 2008 02:36:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=L5TGr999oU46t33N4K02uNCe8ZzWni/st5dpqTA4Ei8=; b=ZMwO7hx5Ptcyl3wF3qL0/IXKq4BBhZNF5jRRVKYGJlMe0NYCTaTUFRfbwwmo9FeDkze4g1QkhAmOHo+ZylG0C7FQ2oJanSsowAvztpD40HFBeY9smCvDQgC6VN4hWZdCXgI8/A4Ri+tiUS2V/gz9zEDFkyBR16UpEdjrQGzu6+U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SNjMcHubQUtv5GNXUJBZ/rBxkwt4ieMQpcUpOrgkCbGYN94FxxT+nnDzaJZY8alsJTuHJmb/XIfs5uf+8p+HzkW4aYoXLSdUD8UmLuWqZ8Hm0g4ZR4s5nBRCq9+0LcQv/5hV2AeaBdHB6X1KWSkjefv/wcbzN2+tot2MFchUGcA= Original-Received: by 10.114.156.1 with SMTP id d1mr1531582wae.120.1207820218344; Thu, 10 Apr 2008 02:36:58 -0700 (PDT) Original-Received: by 10.115.72.13 with HTTP; Thu, 10 Apr 2008 02:36:58 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) 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:94858 Archived-At: On Thu, Apr 10, 2008 at 10:59 AM, Jason Rumney wrote: > + make recompile > + Recompiles any changed lisp files after a cvs update. This saves > + doing a full bootstrap after every update. If this or a subsequent > + make fail, you probably need to perform a full bootstrap, though > + running this target multiple times may eventually sort out the > + interdependencies. Currently, the `recompile' target of nt/makefile.w32-in runs the `recompile' target of lisp/makefile. It would be perhaps more useful to run the `cvs-update' target introduced by Eli: # This is useful after "cvs up". cvs-update: recompile autoloads finder-data custom-deps BTW, what is the `updates' target of lisp/Makefile.in (and makefile.w32-in) used for? updates: update-subdirs autoloads finder-data custom-deps Perhaps `cvs-update' should just be: cvs-update: recompile updates as, after a cvs up, it makes sense to do update-subdirs. Juanma