diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1995-11-22 00:08:26 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1995-11-22 00:08:26 +0000 |
commit | 283a2b3dbf732783e8b582adaceca8455ae15b90 (patch) | |
tree | f13803b3518fa27c7081acbf069b5c0289f02b7e | |
parent | 330add8ac5d217e615a30d9c3b0602c52af801ca (diff) | |
download | gdb-283a2b3dbf732783e8b582adaceca8455ae15b90.zip gdb-283a2b3dbf732783e8b582adaceca8455ae15b90.tar.gz gdb-283a2b3dbf732783e8b582adaceca8455ae15b90.tar.bz2 |
* Makefile.in (DEVO_SUPPORT): Add symlink-tree.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.in | 43 |
2 files changed, 39 insertions, 8 deletions
@@ -1,3 +1,7 @@ +Tue Nov 21 16:06:13 1995 Doug Evans <dje@canuck.cygnus.com> + + * Makefile.in (DEVO_SUPPORT): Add symlink-tree. + Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com> * configure.in: Strip --host and --target options from diff --git a/Makefile.in b/Makefile.in index 3840e4d..3085a7e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -863,12 +863,39 @@ $(CONFIGURE_TARGET_MODULES): RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \ echo Configuring in $(TARGET_SUBDIR)/$${dir}; \ cd $(TARGET_SUBDIR)/$${dir}; \ - if [ -f $${srcroot}/$${dir}/configure ] ; then \ - $${srcroot}/$${dir}/configure \ - $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \ + case $(srcdir) in \ + /*) \ + topdir=$(srcdir) ;; \ + *) \ + case "$(TARGET_SUBDIR)" in \ + .) topdir="../$(srcdir)" ;; \ + *) topdir="../../$(srcdir)" ;; \ + esac ;; \ + esac; \ + if [ "$(srcdir)" = "." ] ; then \ + if [ "$(TARGET_SUBDIR)" != "." ] ; then \ + if $(SHELL) $${srcroot}/symlink-tree $${topdir}/$${dir} "Makefile" ; then \ + true; \ + else \ + exit 1; \ + fi; \ + else \ + true; \ + fi; \ + srcdiroption="--srcdir=."; \ + libsrcdir="."; \ + else \ + srcdiroption="--srcdir=$${topdir}/$${dir}"; \ + libsrcdir="$${srcroot}/$${dir}"; \ + fi; \ + if [ -f $${libsrcdir}/configure ] ; then \ + $(SHELL) $${libsrcdir}/configure \ + $(CONFIG_ARGUMENTS) $${srcdiroption} \ + --with-target-subdir="$(TARGET_SUBDIR)"; \ else \ - $${srcroot}/configure \ - $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \ + $(SHELL) $${srcroot}/configure \ + $(CONFIG_ARGUMENTS) $${srcdiroption} \ + --with-target-subdir="$(TARGET_SUBDIR)"; \ fi; \ else \ true; \ @@ -1039,10 +1066,10 @@ all-hello: all-libiberty all-indent: all-ispell: all-emacs19 all-ld: all-libiberty all-bfd all-byacc all-flex -configure-target-libg++: $(ALL_GCC) +configure-target-libg++: $(ALL_GCC) configure-target-librx all-target-libg++: configure-target-libg++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio all-target-librx all-target-libstdc++ configure-target-libgloss: $(ALL_GCC) -all-target-libgloss: configure-target-libgloss +all-target-libgloss: configure-target-libgloss configure-target-newlib configure-target-libio: $(ALL_GCC) all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-libiberty: @@ -1140,7 +1167,7 @@ Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) DEVO_SUPPORT= README Makefile.in configure configure.in \ config.guess config.sub config move-if-change \ mpw-README mpw-build.in mpw-config.in mpw-configure \ - COPYING COPYING.LIB install.sh cfg-ml-com.in cfg-ml-pos.in + COPYING COPYING.LIB install.sh config-ml.in symlink-tree # Files in devo/etc used in any net release. # ChangeLog omitted because it may refer to files which are not in this |