diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-12 04:52:27 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-12 04:52:27 +0000 |
commit | c21b1b266083751c0860cca335362910e1b08c41 (patch) | |
tree | 6363deefdb69997f71cc7cba97c5638e6ee23695 /readline/Makefile.in | |
parent | 3509822c486f47896444736d07aa8d0eb19b5578 (diff) | |
download | gdb-c21b1b266083751c0860cca335362910e1b08c41.zip gdb-c21b1b266083751c0860cca335362910e1b08c41.tar.gz gdb-c21b1b266083751c0860cca335362910e1b08c41.tar.bz2 |
Mon Nov 11 20:50:29 1991 Steve Chamberlain (sac at cygnus.com)
* Makefile.in: Use the MINUS_G no-debug convention
* readline.c: (many_places) move all the declarations of rindex to
only one place, to reduce the number of warnings it makes.
Diffstat (limited to 'readline/Makefile.in')
-rw-r--r-- | readline/Makefile.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/readline/Makefile.in b/readline/Makefile.in index 5c23b08..eda231a 100644 --- a/readline/Makefile.in +++ b/readline/Makefile.in @@ -4,7 +4,7 @@ srcdir = . -destdir = /usr/local +ddestdir = /usr/local INSTALL_PROG = install -c INSTALL_FILE = $(INSTALL_PROG) @@ -19,8 +19,8 @@ INSTALL_FILE = $(INSTALL_PROG) # Destination installation directory. The libraries are copied to DESTDIR # when you do a `make install', and the header files to INCDIR/readline/*.h. -DESTDIR = $(destdir)/lib -INCDIR = $(destdir)/include +DESTDIR = $(ddestdir)/lib +INCDIR = $(ddestdir)/include # Define TYPES as -DVOID_SIGHANDLER if your operating system uses # a return type of "void" for signal handlers. @@ -36,7 +36,8 @@ TYPES = -DVOID_SIGHANDLER # the vi line editing mode and features. READLINE_DEFINES = $(TYPES) -DVI_MODE -DEBUG_FLAGS = -g +MINUS_G=-g +DEBUG_FLAGS = $(MINUS_G) LDFLAGS = $(DEBUG_FLAGS) CFLAGS = $(DEBUG_FLAGS) $(SYSV) -I. @@ -146,5 +147,5 @@ force: # with the gnu make, this is done automatically. -Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(host_makefile_frag) $(target_makefile_frag) +Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) $(SHELL) ./config.status |