diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-01-13 23:31:57 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-01-13 23:31:57 +0000 |
commit | 218d43e52e53cb8b5ef1920f745de94218a12bf4 (patch) | |
tree | 41aa566913f3be0c4a719b7a39fe9c3d9612bda7 /gdb | |
parent | b5088d10b50153da5fb0643f960206e1de871906 (diff) | |
download | binutils-218d43e52e53cb8b5ef1920f745de94218a12bf4.zip binutils-218d43e52e53cb8b5ef1920f745de94218a12bf4.tar.gz binutils-218d43e52e53cb8b5ef1920f745de94218a12bf4.tar.bz2 |
* Makefile.in (all): Don't make libgdb-files.
(libgdb): New action, makes libgdb-files.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 21 | ||||
-rw-r--r-- | gdb/Makefile.in | 4 |
2 files changed, 18 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a522e8c..290b1d1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -4,18 +4,25 @@ Fri Jan 13 17:52:57 1995 Jim Kingdon <kingdon@lioth.cygnus.com> accept it was accidental. "handle 0" and "info signal 0" remain illegal, though. +Fri Jan 13 15:19:01 1995 Stan Shebs <shebs@andros.cygnus.com> + + * Makefile.in (all): Don't make libgdb-files. + (libgdb): New action, makes libgdb-files. + Thu Jan 12 21:23:25 1995 Per Bothner <bothner@kalessin.cygnus.com> * stabsread.c (read_enum_type): When pending enum symbols are put into the enum type, they must be inserted in "backwards order, in case we've overflowed a struct pending buffer. +start-sanitize-gdbtk Thu Jan 12 15:02:40 1995 Stu Grossman (grossman@cygnus.com) - * gdbtk.c gdbtk.tcl: Update/add copyright. + * gdbtk.c, gdbtk.tcl: Update/add copyright. * gdbtk.tcl (build_framework): Several fixes for filespec widget, including dismiss button, and better error handling. * (create_command_win): Bind button 2 to retrieve selection. +end-sanitize-gdbtk Thu Jan 12 09:33:24 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) @@ -62,19 +69,21 @@ Thu Jan 12 09:33:24 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) (_initialize_procfs): Don't add procfs support if we have an optional procfs and /proc is not accessible. +start-sanitize-gdbtk Wed Jan 11 17:06:55 1995 Stu Grossman (grossman@cygnus.com) * gdbtk.tcl: Add button to control mixed source disassembly. - * Use text widgets in expr window. The give me more control over + Use text widgets in expr window. The give me more control over layout. - * Add auto-updating of exprs in expression window. - * Handle expressions out of scope a bit better. - * Make selected window pop up to the top when invoked via the + Add auto-updating of exprs in expression window. + Handle expressions out of scope a bit better. + Make selected window pop up to the top when invoked via the menubar. - * Make copyright message have raised relief. + Make copyright message have raised relief. * gdbtk.c (gdbtk_init): Improve handling for errors in gdbtk.tcl during startup. +end-sanitize-gdbtk Wed Jan 11 17:53:26 1995 Rob Savoye <rob@darkstar.cygnus.com> diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 4650493..6aafa5e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -475,7 +475,7 @@ DISTSTUFF = $(YYFILES) .c.o: $(CC) -c $(INTERNAL_CFLAGS) $< -all: gdb libgdb-files $(LIBGDB_OBS) +all: gdb @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do installcheck: @@ -585,6 +585,8 @@ gdb: $(OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o nlm: force rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do +libgdb: libgdb-files $(LIBGDB_OBS) + # libproc is not listed here because all-libproc is a dependency of all-gui, # not all-gdb, and thus might be built after us. LIBGDBDEPS=$(COMMON_OBS) $(LIBGDB_OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o |