From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8067 invoked by alias); 20 Sep 2002 18:16:26 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 8060 invoked from network); 20 Sep 2002 18:16:25 -0000 Received: from unknown (HELO jackfruit.Stanford.EDU) (171.64.38.136) by sources.redhat.com with SMTP; 20 Sep 2002 18:16:25 -0000 Received: (from carlton@localhost) by jackfruit.Stanford.EDU (8.11.6/8.11.6) id g8KIGEO26955; Fri, 20 Sep 2002 11:16:14 -0700 X-Authentication-Warning: jackfruit.Stanford.EDU: carlton set sender to carlton@math.stanford.edu using -f To: Elena Zannoni Cc: Andrew Cagney , gdb-patches@sources.redhat.com Subject: Re: [rfa] missing include in c-lang.c References: <3D8B5882.7040508@ges.redhat.com> <15755.24741.253292.79999@localhost.redhat.com> From: David Carlton Date: Fri, 20 Sep 2002 11:16:00 -0000 In-Reply-To: <15755.24741.253292.79999@localhost.redhat.com> Message-ID: User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Common Lisp) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-09/txt/msg00533.txt.bz2 On Fri, 20 Sep 2002 13:53:41 -0400, Elena Zannoni said: > Makefile.in should be updated too. Whoops! Thanks for reminding me. David Carlton carlton@math.stanford.edu 2002-09-20 David Carlton * Makefile.in (c-lang.o): Correct dependencies. (utils.o): Gather dependencies. (charset.o): Move. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.262 diff -u -p -r1.262 Makefile.in --- Makefile.in 20 Sep 2002 14:58:59 -0000 1.262 +++ Makefile.in 20 Sep 2002 18:13:53 -0000 @@ -1560,7 +1560,7 @@ builtin-regs.o: builtin-regs.c $(defs_h) $(gdb_string_h) $(gdb_assert_h) c-lang.o: c-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ $(parser_defs_h) $(language_h) $(c_lang_h) $(valprint_h) \ - $(macroscope_h) $(gdb_assert_h) + $(macroscope_h) $(gdb_assert_h) $(charset_h) $(gdb_string_h) c-typeprint.o: c-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \ $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \ $(language_h) $(demangle_h) $(c_lang_h) $(typeprint_h) $(cp_abi_h) \ @@ -1572,6 +1572,7 @@ c-valprint.o: c-valprint.c $(defs_h) $(g # OBSOLETE ch-lang.o: ch-lang.c # OBSOLETE ch-typeprint.o: ch-typeprint.c # OBSOLETE ch-valprint.o: ch-valprint.c +charset.o: charset.c $(defs_h) $(charset_h) $(gdbcmd_h) gdb_assert.h cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h) $(gdb_string_h) \ $(gdb_assert_h) coff-solib.o: coff-solib.c $(defs_h) $(frame_h) $(bfd_h) $(gdbcore_h) \ @@ -2242,7 +2243,7 @@ ui-out.o: ui-out.c $(defs_h) $(gdb_strin utils.o: utils.c $(config_h) $(defs_h) $(gdb_assert_h) $(gdb_string_h) \ $(event_top_h) $(gdbcmd_h) $(serial_h) $(bfd_h) $(target_h) \ $(demangle_h) $(expression_h) $(language_h) $(annotate_h) \ - $(filenames_h) $(inferior_h) $(mmalloc_h) + $(filenames_h) $(inferior_h) $(mmalloc_h) $(charset_h) uw-thread.o: uw-thread.c $(defs_h) $(gdbthread_h) $(target_h) $(inferior_h) \ $(regcache_h) $(gregset_h) v850-tdep.o: v850-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ @@ -2588,8 +2589,4 @@ xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxWorks.h vx-share/xdr_rdb.h $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c -charset.o: charset.c $(defs_h) $(charset_h) $(gdbcmd_h) gdb_assert.h - -c-lang.o: $(charset_h) -utils.o: $(charset_h) ### end of the gdb Makefile.in.