diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-12-14 02:37:16 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-12-14 02:37:16 +0000 |
commit | f7e85b1bc11e564d356933c447070a55ff5fa56d (patch) | |
tree | 676c86e49ebbc3c02e29a16a41cfb7a6ab77138b /gdb/Makefile.in | |
parent | aaa3c096db1beebb67015bc8711cf908f7f2559b (diff) | |
download | gdb-f7e85b1bc11e564d356933c447070a55ff5fa56d.zip gdb-f7e85b1bc11e564d356933c447070a55ff5fa56d.tar.gz gdb-f7e85b1bc11e564d356933c447070a55ff5fa56d.tar.bz2 |
CARP:
Consolidate the semi-dynamic target system dependant GDB parameters
moving them all into a new file.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 10f3f59..6831a6e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -398,7 +398,7 @@ SFILES = ax-general.c ax-gdb.c bcache.c blockframe.c breakpoint.c \ command.c complaints.c corefile.c cp-valprint.c dbxread.c \ demangle.c dwarfread.c dwarf2read.c elfread.c environ.c eval.c \ expprint.c f-exp.y f-lang.c f-typeprint.c f-valprint.c \ - findvar.c gdbtypes.c infcmd.c inflow.c infrun.c language.c \ + findvar.c gdbarch.c gdbtypes.c infcmd.c inflow.c infrun.c language.c \ $(start-sanitize-java) \ jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \ $(end-sanitize-java) \ @@ -455,7 +455,7 @@ breakpoint_h = breakpoint.h $(frame_h) $(value_h) command_h = command.h gdbcmd_h = gdbcmd.h $(command_h) -defs_h = defs.h xm.h tm.h nm.h config.status config.h +defs_h = defs.h xm.h tm.h nm.h config.status config.h gdbarch.h inferior_h = inferior.h $(breakpoint_h) tracepoint_h = tracepoint.h @@ -520,7 +520,7 @@ TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR) COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \ source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \ symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \ - expprint.o environ.o gdbtypes.o copying.o $(DEPFILES) \ + expprint.o environ.o gdbarch.o gdbtypes.o copying.o $(DEPFILES) \ mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \ exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \ dbxread.o coffread.o elfread.o \ @@ -1202,6 +1202,8 @@ v850ice.o: v850ice.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \ $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \ $(srcdir)/v850ice.c +gdbarch.o: gdbarch.c $(defs_h) $(bfd_h) $(gdbcmd_h) + gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \ $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \ $(value_h) gdb_string.h |