diff options
author | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:30:31 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:30:31 +0000 |
commit | 771578d16036fe218ad98c08540e0c5aae7624e1 (patch) | |
tree | fa304264fb14e8d1c771b1d4a1cdfb3c728331bc /readline/Makefile.in | |
parent | d60d9f651ab04df95fcd31488fbb46be263382ae (diff) | |
download | gdb-771578d16036fe218ad98c08540e0c5aae7624e1.zip gdb-771578d16036fe218ad98c08540e0c5aae7624e1.tar.gz gdb-771578d16036fe218ad98c08540e0c5aae7624e1.tar.bz2 |
import gdb-19990422 snapshot
Diffstat (limited to 'readline/Makefile.in')
-rw-r--r-- | readline/Makefile.in | 40 |
1 files changed, 25 insertions, 15 deletions
diff --git a/readline/Makefile.in b/readline/Makefile.in index 0c5c169..ae402fd 100644 --- a/readline/Makefile.in +++ b/readline/Makefile.in @@ -19,7 +19,7 @@ RL_LIBRARY_VERSION = @LIBVERSION@ RL_LIBRARY_NAME = readline srcdir = @srcdir@ -VPATH = .:@srcdir@ +VPATH = @srcdir@ top_srcdir = @top_srcdir@ BUILD_DIR = @BUILD_DIR@ @@ -197,20 +197,30 @@ examples: force force: -install: installdirs $(STATIC_LIBS) - for f in ${INSTALLED_HEADERS}; do \ - $(INSTALL_DATA) $(srcdir)/$$f $(includedir)/readline ; \ - done - -( if test -f $(libdir)/libreadline.a ; then $(MV) $(libdir)/libreadline.a $(libdir)/libreadline.old; fi ) - $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a - -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libreadline.a - -( if test -f $(libdir)/libhistory.a; then $(MV) $(libdir)/libhistory.a $(libdir)/libhistory.old; fi ) - $(INSTALL_DATA) libhistory.a $(libdir)/libhistory.a - -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libhistory.a - -( if test -d doc ; then \ - cd doc && \ - ${MAKE} ${MFLAGS} infodir=$(infodir) $@; \ - fi ) +## CYGNUS LOCAL +## Don't mess with people's installed readline's. +## This tries to install this version of readline over whatever +## version is already installed on the system (which could be a +## newer version). There is no real reason for us to install +## readline along with GDB. GDB links statically against readline, +## so it doesn't depend on us installing it on the system. + +install: + +#install: installdirs $(STATIC_LIBS) +# for f in ${INSTALLED_HEADERS}; do \ +# $(INSTALL_DATA) $(srcdir)/$$f $(includedir)/readline ; \ +# done +# -( if test -f $(libdir)/libreadline.a ; then $(MV) $(libdir)/libreadline.a $(libdir)/libreadline.old; fi ) +# $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a +# -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libreadline.a +# -( if test -f $(libdir)/libhistory.a; then $(MV) $(libdir)/libhistory.a $(libdir)/libhistory.old; fi ) +# $(INSTALL_DATA) libhistory.a $(libdir)/libhistory.a +# -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libhistory.a +# -( if test -d doc ; then \ +# cd doc && \ +# ${MAKE} ${MFLAGS} infodir=$(infodir) $@; \ +# fi ) installdirs: $(srcdir)/support/mkdirs -$(SHELL) $(srcdir)/support/mkdirs $(includedir) \ |