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-12-14 06:27:35 +0300
committerMike Frysinger <vapier@gentoo.org>2023-01-11 09:00:21 +0300
commit275b39e219d06ec26715bf2b53812513e37e7c04 (patch)
treee5e124c767b8c8b23bea912448794847e004981e /libgloss/configure.ac
parent26f9cfd7a8034919448ab4604a9c9d39c04b8d19 (diff)
libgloss: merge arm 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 33026534f..6b0117805 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -18,6 +18,8 @@ AC_ARG_ENABLE(newlib-supplied-syscalls,
*) AC_MSG_ERROR(bad value ${enableval} for newlib-supplied-syscalls option) ;;
esac], [newlib_may_supply_syscalls=yes])dnl
+AM_CONDITIONAL(MAY_SUPPLY_SYSCALLS, test x[$]{newlib_may_supply_syscalls} = xyes)
+
AC_PROG_INSTALL
AC_CANONICAL_SYSTEM
@@ -214,8 +216,7 @@ case "${target}" in
subdirs="$subdirs rx"
;;
arm*-*-elf | arm*-*-coff | arm*-*-*)
- AC_CONFIG_FILES([arm/Makefile arm/cpu-init/Makefile])
- subdirs="$subdirs arm arm/cpu-init"
+ config_arm=true
;;
spu-*-elf)
AC_CONFIG_FILES([spu/Makefile])
@@ -250,7 +251,7 @@ AC_SUBST(subdirs)
dnl These subdirs have converted to non-recursive make. Hopefully someday all
dnl the ports above will too!
m4_foreach_w([SUBDIR], [
- aarch64 bfin iq2000 libnosys lm32 riscv wince
+ aarch64 arm bfin iq2000 libnosys lm32 riscv wince
], [dnl
AM_CONDITIONAL([CONFIG_]m4_toupper(SUBDIR), [test x$config_]SUBDIR = xtrue)
])