diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-18 17:39:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-18 17:39:57 +0000 |
commit | c5208e263e5c2cbb0bdf5b552fae16589f570167 (patch) | |
tree | bedd04bdda0434a41b58147027d2eb30aa659295 /gnu/usr.bin/binutils/gdb/Makefile.in | |
parent | 9ca529ac8301462ea57921434e101b21597674c2 (diff) |
Build gnu/lib/libreadline and use it instead of the one currently
in the binutils dir.
Diffstat (limited to 'gnu/usr.bin/binutils/gdb/Makefile.in')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/Makefile.in | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gnu/usr.bin/binutils/gdb/Makefile.in b/gnu/usr.bin/binutils/gdb/Makefile.in index 740b2912a8d..c1f1a0abcb4 100644 --- a/gnu/usr.bin/binutils/gdb/Makefile.in +++ b/gnu/usr.bin/binutils/gdb/Makefile.in @@ -109,10 +109,12 @@ BFD_SRC = $(srcdir)/$(BFD_DIR) BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC) # Where is the READLINE library? Typically in ../readline. -READLINE_DIR = ../readline -READLINE = $(READLINE_DIR)/libreadline.a -READLINE_SRC = $(srcdir)/$(READLINE_DIR) -READLINE_CFLAGS = -I$(READLINE_SRC) +#READLINE_DIR = ../readline +#READLINE = $(READLINE_DIR)/libreadline.a +#READLINE_SRC = $(srcdir)/$(READLINE_DIR) +#READLINE_CFLAGS = -I$(READLINE_SRC) +READLINE = -lreadline +READLINE_CFLAGS = -I$(DESTDIR)/usr/include/readline # Opcodes currently live in one of two places. Either they are in the # opcode library, typically ../opcodes, or they are in a header file @@ -386,11 +388,11 @@ dis-asm_h = $(INCLUDE_DIR)/dis-asm.h dcache_h = dcache.h remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h remote-sim.h -readline_headers = \ - $(READLINE_SRC)/chardefs.h \ - $(READLINE_SRC)/history.h \ - $(READLINE_SRC)/keymaps.h \ - $(READLINE_SRC)/readline.h +#readline_headers = \ +# $(READLINE_SRC)/chardefs.h \ +# $(READLINE_SRC)/history.h \ +# $(READLINE_SRC)/keymaps.h \ +# $(READLINE_SRC)/readline.h udiheaders = \ $(srcdir)/29k-share/udi/udiproc.h \ |