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>2023-12-27 07:13:37 +0300
committerMike Frysinger <vapier@gentoo.org>2024-01-20 04:26:52 +0300
commit25f6d8772ec7f6305d59224d2043dd312e2f99e5 (patch)
treead9311cef4dcfa5518073b8ce7a219d2d0d93335 /libgloss/configure.ac
parent56211d0e14fe5e97000884d21d003759f2906422 (diff)
libgloss: merge mn10300 into top-level Makefile
Avoid a recursive make to speed things up a bit. A mn10300-elf build shows installed objects & libs produce same code.
Diffstat (limited to 'libgloss/configure.ac')
-rw-r--r--libgloss/configure.ac7
1 files changed, 3 insertions, 4 deletions
diff --git a/libgloss/configure.ac b/libgloss/configure.ac
index 0f768947c..4637375c7 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -118,9 +118,7 @@ case "${target}" in
target_makefile_frag=${srcdir}/config/mn10200.mt
;;
mn10300-*-*)
- AC_CONFIG_FILES([mn10300/Makefile])
- subdirs="$subdirs mn10300"
- target_makefile_frag=${srcdir}/config/mn10300.mt
+ config_mn10300=true
;;
bfin-*-*)
config_bfin=true
@@ -244,7 +242,8 @@ 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 arc arm bfin csky d30v frv i386 i960 iq2000 libnosys lm32 moxie msp430
+ aarch64 arc arm bfin csky d30v frv i386 i960 iq2000 libnosys lm32
+ mn10300 moxie msp430
nios2 riscv v850 wince xtensa
], [dnl
AM_CONDITIONAL([CONFIG_]m4_toupper(SUBDIR), [test x$config_]SUBDIR = xtrue)