From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23670 invoked by alias); 11 Jul 2009 00:45:41 -0000 Received: (qmail 23528 invoked by uid 22791); 11 Jul 2009 00:45:37 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.33.17) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 11 Jul 2009 00:45:31 +0000 Received: from spaceape10.eur.corp.google.com (spaceape10.eur.corp.google.com [172.28.16.144]) by smtp-out.google.com with ESMTP id n6B0jSsA003678; Sat, 11 Jul 2009 01:45:28 +0100 Received: from rv-out-0506.google.com (rvbg37.prod.google.com [10.140.83.37]) by spaceape10.eur.corp.google.com with ESMTP id n6B0jO7d015360; Fri, 10 Jul 2009 17:45:25 -0700 Received: by rv-out-0506.google.com with SMTP id g37so286677rvb.7 for ; Fri, 10 Jul 2009 17:45:24 -0700 (PDT) Received: by 10.141.36.18 with SMTP id o18mr1664165rvj.233.1247273124621; Fri, 10 Jul 2009 17:45:24 -0700 (PDT) Received: from localhost.localdomain.google.com ([67.218.105.126]) by mx.google.com with ESMTPS id g22sm4256344rvb.5.2009.07.10.17.45.22 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 10 Jul 2009 17:45:23 -0700 (PDT) To: Dave Korn Cc: Tom Tromey , Binutils Development , gdb-patches@sourceware.org Subject: Re: RFA: dwarf2.h merge References: <20090710151042.GN3181@bubble.grove.modra.org> <4A57B161.8090806@gmail.com> From: Ian Lance Taylor Date: Sat, 11 Jul 2009 08:25:00 -0000 In-Reply-To: <4A57B161.8090806@gmail.com> (Dave Korn's message of "Fri\, 10 Jul 2009 22\:23\:45 +0100") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-System-Of-Record: true Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-07/txt/msg00323.txt.bz2 Dave Korn writes: > Alan Modra wrote: >> On Fri, Jul 10, 2009 at 08:55:23AM -0600, Tom Tromey wrote: >>> * Makefile.am (dwarf2.lo): Use dwarf2.h, not elf/dwarf2.h. >>> (elf-eh-frame.lo): Likewise. >>> (elf32-bfin.lo): Likewise. >>> (elf32-frv.lo): Likewise. >>> (elf32-xc16x.lo): Likewise. >> >> You did this by hand? "make dep-am" in bfd, opcodes, binutils, gas, >> gprof, ld! Oh well, binutils parts OK anyway. >> > > Side issue: What's the difference between "make dep" and "make dep-am"? "make dep" changes Makefile in your build directory. "make dep-am" changes Makefile.am in your source directory. For that matter, we still have "make dep-in" which changes Makefile.in in your source directory. Basically "make dep" and "make dep-in" could conceivably be useful if you can't figure out how to run automake. In practice I don't think anybody would notice if we got rid of them. Ian