From b8774958a0e51280e863a907378158a852b1a5fa Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Thu, 24 Jun 1993 23:16:00 +0000 Subject: [PATCH] define OP_INCLUDE --- gdb/ChangeLog | 16 +++++++++++++++- gdb/Makefile.in | 13 +++++++------ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 58260400da..18164e9b83 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,17 @@ +Thu Jun 24 13:26:04 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + * Makefile.in (OP_INCLUDE): define. + (OPCODE_CFLAGS): use OP_INCLUDE. + + * config/i386/ncr3000.mh, config/i386/i386v4.mh, + config/i386/i386sol2.mh, config/m68k/hp300hpux.mh, + config/m68k/amix.mh, config/mips/irix[34].mh, + config/m88k/delta88.mh, config/sparc/sun4sol2.mh (ALLOCA, + ALLOCA1): macros removed. + + * config/mips/decstation.mh, config/rs6000/rs6000.mh + (MMALLOC_LIB): renamed to MMALLOC. + Wed Jun 23 00:25:58 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * partial-stab.h: Consolidate case statements for N_LSYM and N_FUN. @@ -10,7 +24,7 @@ Wed Jun 23 15:04:54 1993 K. Richard Pixley (rich@sendai.cygnus.com) for makefile variables references. dropped leading ./ in file references. Drop $(srcdir)/ prefix on all dependencies. Inserted contents of alldeps.mak and depend. - (INCLUDE_CFLAGS): erdefined as new macro for getting libiberty's + (INCLUDE_CFLAGS): defined as new macro for getting libiberty's include directory into the compilation line. (GDB_CFLAGS): new macro to take up the semantic previously held by INCLUDE_CFLAGS. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 667cef3a3a..7714e8bbda 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -124,7 +124,8 @@ READLINE_CFLAGS = -I$(READLINE_SRC) OPCODES = ./../opcodes/libopcodes.a # Where are the other opcode tables which only have header file # versions? -OPCODES_CFLAGS = -I$(INCLUDE_DIR)/opcode +OP_INCLUDE = $(INCLUDE_DIR)/opcode +OPCODES_CFLAGS = -I$(OP_INCLUDE) # All the includes used for CFLAGS and for lint. # -I. for config files. @@ -440,7 +441,7 @@ gdb.z:gdb.1 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t pack gdb.t ; rm -f gdb.t mv gdb.t.z gdb.z - + # Traditionally "install" depends on "all". But it may be useful # not to; for example, if the user has made some trivial change to a # source file and doesn't care about rebuilding or just wants to save the @@ -500,7 +501,7 @@ rapp: $(RAPP_OBS) rm -f rapp_init.c $(srcdir)/munch $(MUNCH_DEFINE) $(RAPP_OBS) > rapp_init.c $(CC-LD) $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS) - + config.status: @echo "You must configure gdb. Look at the README file for details." @false @@ -1248,7 +1249,7 @@ symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \ symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) symm-xdep.o: symm-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h) - + symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \ $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \ $(symtab_h) @@ -1276,9 +1277,9 @@ utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \ valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \ $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) - + valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h - + valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \ $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \ $(value_h) -- 2.34.1