diff options
author | Ludovic Courtès <ludo@gnu.org> | 2007-08-09 23:01:17 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2007-08-09 23:01:17 +0000 |
commit | d4310edb359dda35189ab0ece88a9107085fcf54 (patch) | |
tree | 61d5c8ff3037b68131052d16e18c791844d5ab43 /gdb/Makefile.in | |
parent | 57da77961a2dc9c840da5ac22432a84fb4044bc1 (diff) | |
download | gdb-d4310edb359dda35189ab0ece88a9107085fcf54.zip gdb-d4310edb359dda35189ab0ece88a9107085fcf54.tar.gz gdb-d4310edb359dda35189ab0ece88a9107085fcf54.tar.bz2 |
Re-instated Guile/Scheme support.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 55ac13d..a445af4 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -555,6 +555,7 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c \ p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \ prologue-value.c \ regcache.c reggroups.c remote.c remote-fileio.c \ + scm-exp.c scm-lang.c scm-valprint.c \ sentinel-frame.c \ serial.c ser-base.c ser-unix.c \ solib.c solib-null.c source.c \ @@ -787,6 +788,8 @@ remote_fileio_h = remote-fileio.h remote_h = remote.h rs6000_tdep_h = rs6000-tdep.h $(defs_h) s390_tdep_h = s390-tdep.h +scm_lang_h = scm-lang.h $(scm_tags_h) +scm_tags_h = scm-tags.h score_tdep_h = score-tdep.h sentinel_frame_h = sentinel-frame.h serial_h = serial.h @@ -958,6 +961,7 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ varobj.o vec.o wrapper.o \ jv-lang.o jv-valprint.o jv-typeprint.o \ m2-lang.o p-lang.o p-typeprint.o p-valprint.o \ + scm-exp.o scm-lang.o scm-valprint.o \ sentinel-frame.o \ complaints.o typeprint.o \ ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \ @@ -2534,6 +2538,15 @@ s390-tdep.o: s390-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) $(inferior_h) \ $(frame_unwind_h) $(dwarf2_frame_h) $(reggroups_h) $(regset_h) \ $(value_h) $(gdb_assert_h) $(dis_asm_h) $(solib_svr4_h) \ $(prologue_value_h) $(s390_tdep_h) +scm-exp.o: scm-exp.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ + $(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \ + $(scm_tags_h) +scm-lang.o: scm-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ + $(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \ + $(scm_tags_h) $(source_h) $(gdb_string_h) $(gdbcore_h) $(infcall_h) +scm-valprint.o: scm-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \ + $(expression_h) $(parser_defs_h) $(language_h) $(value_h) \ + $(scm_lang_h) $(valprint_h) $(gdbcore_h) $(c_lang_h) score-tdep.o: score-tdep.c $(defs_h) $(gdb_assert_h) $(inferior_h) \ $(symtab_h) $(objfiles_h) $(gdbcore_h) $(target_h) \ $(arch_utils_h) $(regcache_h) $(dis_asm_h) $(frame_unwind_h) \ |