diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-10-29 00:02:51 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-10-29 00:02:51 +0000 |
commit | b7966a5adc3cbf38544dca97a9025df896a3db4c (patch) | |
tree | a34b83eb1c1e957b8fd3d8e6e25994ef57bca4d3 /gdb/Makefile.in | |
parent | 18bea424b7f4b9b3e36f9ac590130f3a67e0e609 (diff) | |
download | gdb-b7966a5adc3cbf38544dca97a9025df896a3db4c.zip gdb-b7966a5adc3cbf38544dca97a9025df896a3db4c.tar.gz gdb-b7966a5adc3cbf38544dca97a9025df896a3db4c.tar.bz2 |
* Makefile.in (MMALLOC_DIR): New definition.
(MMALLOC): Use MMALLOC_DIR.
(MMALLOC_CFLAGS): Look in MMALLOC_DIR for mmalloc.h.
(OPCODES): Remove gratuitous "./".
* defs.h (mmalloc.h): Include.
(mmalloc, mrealloc, etc): Remove decls.
(cplus_demangle, cplus_demangle_opname): Remove decls.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 815c98a..2efb7e5 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -82,20 +82,22 @@ CC-LD=$(CC) # routines in libiberty. INCLUDE_DIR = $(srcdir)/../include INCLUDE_CFLAGS = -I$(INCLUDE_DIR) -# Where is the "-liberty" library, containing getopt and obstack? + +# Where is the "-liberty" library? Typically in ../libiberty. LIBIBERTY = ../libiberty/libiberty.a -# Where is the MMALLOC library? Typically ../mmalloc. +# Where is the MMALLOC library? Typically in ../mmalloc. # Note that mmalloc can still be used on systems without mmap(). # To use your system malloc, comment out the following defines. -MMALLOC = ../mmalloc/libmmalloc.a +MMALLOC_DIR = ../mmalloc +MMALLOC = $(MMALLOC_DIR)/libmmalloc.a # To use your system malloc, uncomment MMALLOC_DISABLE. #MMALLOC_DISABLE = -DNO_MMALLOC # To use mmalloc but disable corruption checking, uncomment MMALLOC_CHECK #MMALLOC_CHECK = -DNO_MMALLOC_CHECK -MMALLOC_CFLAGS = $(MMALLOC_CHECK) $(MMALLOC_DISABLE) +MMALLOC_CFLAGS = -I$(srcdir)/$(MMALLOC_DIR) $(MMALLOC_CHECK) $(MMALLOC_DISABLE) -# Where are the BFD library? +# Where is the BFD library? Typically in ../bfd. BFD_DIR = ../bfd BFD = $(BFD_DIR)/libbfd.a BFD_SRC = $(srcdir)/$(BFD_DIR) @@ -112,7 +114,7 @@ READLINE_CFLAGS = -I$(READLINE_SRC) # in INCLUDE_DIR. # Where is the "-lopcodes" library, with (some of) the opcode tables and # disassemblers? -OPCODES = ./../opcodes/libopcodes.a +OPCODES = ../opcodes/libopcodes.a # Where are the other opcode tables which only have header file # versions? OP_INCLUDE = $(INCLUDE_DIR)/opcode |