From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 404 invoked by alias); 21 Oct 2008 18:27:01 -0000 Received: (qmail 390 invoked by uid 22791); 21 Oct 2008 18:27:00 -0000 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.31) with ESMTP; Tue, 21 Oct 2008 18:26:15 +0000 Received: from zps36.corp.google.com (zps36.corp.google.com [172.25.146.36]) by smtp-out.google.com with ESMTP id m9LIQAC8028848 for ; Tue, 21 Oct 2008 19:26:10 +0100 Received: from localhost (ruffy.corp.google.com [172.18.118.116]) by zps36.corp.google.com with ESMTP id m9LIQ893009534 for ; Tue, 21 Oct 2008 11:26:09 -0700 Received: by localhost (Postfix, from userid 67641) id 98B191C7954; Tue, 21 Oct 2008 11:26:08 -0700 (PDT) To: gdb-patches@sourceware.org Subject: [RFA] gdbserver/Makefile.in cleanup [remove unused bfd, readline vars] Message-Id: <20081021182608.98B191C7954@localhost> Date: Tue, 21 Oct 2008 18:27:00 -0000 From: dje@google.com (Doug Evans) X-IsSubscribed: yes 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: 2008-10/txt/msg00513.txt.bz2 I can't think of a reason for these to be here. Ok to check in? 2008-10-21 Doug Evans * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete. (READLINE_DIR,READLINE_DEP): Delete. (INTERNAL_CFLAGS): Update. (LINTFLAGS): Update. Index: gdbserver/Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/Makefile.in,v retrieving revision 1.63 diff -u -p -u -p -r1.63 Makefile.in --- gdbserver/Makefile.in 24 Aug 2008 18:40:37 -0000 1.63 +++ gdbserver/Makefile.in 21 Oct 2008 18:19:38 -0000 @@ -70,17 +70,6 @@ CC-LD=${CC} INCLUDE_DIR = ${srcdir}/../../include INCLUDE_DEP = $$(INCLUDE_DIR) -# Where are the BFD library? -BFD_DIR = ../../bfd -BFD = $(BFD_DIR)/libbfd.a -BFD_SRC = $(srcdir)/$(BFD_DIR) -BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC) - -# Where is the source dir for the READLINE library? Traditionally in .. or . -# (For the binary library built from it, we use ${READLINE_DIR}${subdir}.) -READLINE_DIR = ${srcdir}/../readline -READLINE_DEP = $$(READLINE_DIR) - # All the includes used for CFLAGS and for lint. # -I. for config files. # -I${srcdir} for our headers. @@ -100,7 +89,7 @@ CFLAGS = @CFLAGS@ # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros. INTERNAL_CFLAGS = $(WARN_CFLAGS) ${CFLAGS} ${GLOBAL_CFLAGS} \ - ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} ${BFD_CFLAGS} + ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} # LDFLAGS is specifically reserved for setting from the command line # when running make. @@ -112,7 +101,7 @@ VERSION = gdbserver-4.12.3 DIST=gdb LINT=/usr/5bin/lint -LINTFLAGS= $(BFD_CFLAGS) +LINTFLAGS= # All source files that go into linking GDB remote server.