aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-09-05 01:14:28 +0000
committerJeff Law <law@gcc.gnu.org>1998-09-04 19:14:28 -0600
commitb54db29476ac88bca0ed0977ab0cbd78c42d0cc7 (patch)
tree14de162ad397d730630e7894f1c91c04b29c026d
parentb79f73df6aed1b1411b1b505bc5dd48e9ed78609 (diff)
downloadgcc-b54db29476ac88bca0ed0977ab0cbd78c42d0cc7.zip
gcc-b54db29476ac88bca0ed0977ab0cbd78c42d0cc7.tar.gz
gcc-b54db29476ac88bca0ed0977ab0cbd78c42d0cc7.tar.bz2
Makefile.in (TARGET_CONFIGDIRS): Add libchill.
* Makefile.in (TARGET_CONFIGDIRS): Add libchill. (ALL_TARGET_MODULES): Add all-target-libchill. (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly. (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly. (all-target-libchill): Add dependencies. * configure.in (target_libs): Add libchill. From-SVN: r22239
-rw-r--r--ChangeLog9
-rw-r--r--Makefile.in8
-rw-r--r--configure.in2
3 files changed, 17 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7aad36e..031a955 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
+
+ * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
+ (ALL_TARGET_MODULES): Add all-target-libchill.
+ (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
+ (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
+ (all-target-libchill): Add dependencies.
+ * configure.in (target_libs): Add libchill.
+
Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
* config.guess: Avoid assumptions about "tr" behaves when
diff --git a/Makefile.in b/Makefile.in
index b1cfd7b..6fa48f7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -154,7 +154,7 @@ OTHERS =
# This is set by the configure script to the list of directories which
# should be built using the target tools.
-TARGET_CONFIGDIRS = libiberty libgloss newlib libio librx libstdc++ libg++ libf2c winsup
+TARGET_CONFIGDIRS = libiberty libgloss newlib libio librx libstdc++ libg++ libf2c libchill winsup
# Target libraries are put under this directory:
# Changed by configure to $(target_alias) if cross.
@@ -677,6 +677,7 @@ ALL_TARGET_MODULES = \
all-target-libg++ \
all-target-newlib \
all-target-libf2c \
+ all-target-libchill \
all-target-winsup \
all-target-libgloss \
all-target-libiberty \
@@ -692,6 +693,7 @@ CONFIGURE_TARGET_MODULES = \
configure-target-libg++ \
configure-target-newlib \
configure-target-libf2c \
+ configure-target-libchill \
configure-target-winsup \
configure-target-libgloss \
configure-target-libiberty \
@@ -706,6 +708,7 @@ CHECK_TARGET_MODULES = \
check-target-libg++ \
check-target-newlib \
check-target-libf2c \
+ check-target-libchill \
check-target-winsup \
check-target-libiberty \
check-target-gperf
@@ -718,6 +721,7 @@ INSTALL_TARGET_MODULES = \
install-target-libg++ \
install-target-newlib \
install-target-libf2c \
+ install-target-libchill \
install-target-winsup \
install-target-libgloss \
install-target-libiberty \
@@ -790,6 +794,7 @@ CLEAN_TARGET_MODULES = \
clean-target-libg++ \
clean-target-newlib \
clean-target-libf2c \
+ clean-target-libchill \
clean-target-winsup \
clean-target-libgloss \
clean-target-libiberty \
@@ -1467,6 +1472,7 @@ all-target-librx: configure-target-librx
configure-target-libstdc++: $(ALL_GCC)
all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
all-target-libf2c: configure-target-libf2c all-gas all-ld all-gcc all-target-libiberty all-target-newlib
+all-target-libchill: configure-target-libchill all-gas all-ld all-gcc all-target-libiberty all-target-newlib
all-m4: all-libiberty
all-make: all-libiberty
all-mmalloc:
diff --git a/configure.in b/configure.in
index 63e6105..0cd3754 100644
--- a/configure.in
+++ b/configure.in
@@ -55,7 +55,7 @@ host_tools="texinfo byacc flex bison binutils ld gas gcc sim gdb make patch prms
# these libraries are built for the target environment, and are built after
# the host libraries and the host tools (which may be a cross compiler)
#
-target_libs="target-libiberty target-libgloss target-newlib target-libio target-librx target-libstdc++ target-libg++ target-libf2c"
+target_libs="target-libiberty target-libgloss target-newlib target-libio target-librx target-libstdc++ target-libg++ target-libf2c target-libchill"
# these tools are built using the target libs, and are intended to run only