Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-02-02 08:23:50 +0300
committerMike Frysinger <vapier@gentoo.org>2022-02-11 14:14:55 +0300
commit62e580f01b8d1c5a3bce5c046853332217cf6458 (patch)
treef0943e4d0701a87e46bebba931bc991466f5f2d0 /libgloss/configure.ac
parentf8aede785505de293feb0c105450a0f32e8cbfe6 (diff)
libgloss: merge iq2000 into top-level Makefile
Avoid a recursive make to speed things up a bit.
Diffstat (limited to 'libgloss/configure.ac')
-rw-r--r--libgloss/configure.ac7
1 files changed, 4 insertions, 3 deletions
diff --git a/libgloss/configure.ac b/libgloss/configure.ac
index f411ff06e..8f6019a83 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -208,8 +208,7 @@ case "${target}" in
config_testsuite=false
;;
iq2000-*-*)
- AC_CONFIG_FILES([iq2000/Makefile])
- subdirs="$subdirs iq2000"
+ config_iq2000=true
;;
or1k-*-* | or1knd-*-* )
AC_CONFIG_FILES([or1k/Makefile])
@@ -225,6 +224,8 @@ case "${target}" in
;;
esac
+AM_CONDITIONAL(CONFIG_IQ2000, test x$config_iq2000 = xtrue)
+
dnl For now, don't bother configuring testsuite
dnl
dnl if test "${config_testsuite}" = "true";
@@ -242,7 +243,7 @@ AC_SUBST(AR)
LD=${LD-ld}
AC_SUBST(LD)
AC_PROG_RANLIB
-LIB_AM_PROG_AS
+AM_PROG_AS
AC_DEFINE(HAVE_GNU_LD, 1, [Using GNU LD])