import gdb-19990422 snapshot
[deliverable/binutils-gdb.git] / readline / Makefile.in
index 0c5c169fe28d039167ea02ad527f5f301a8684bc..ae402fd047d2c91284fde2daa558044c6ea64641 100644 (file)
@@ -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) \
This page took 0.025692 seconds and 4 git commands to generate.