mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-25 16:47:20 +08:00
f4c8e1623b
Avoid a recursive make to speed things up a bit. A mcore-elf build shows installed objects & libs produce same code.
8 lines
250 B
Plaintext
8 lines
250 B
Plaintext
MCORE_BUILD_ELF=false
|
|
MCORE_BUILD_PE=false
|
|
AS_CASE([${target}],
|
|
[mcore-*-elf], [MCORE_BUILD_ELF=true],
|
|
[mcore-*-pe], [MCORE_BUILD_PE=true])
|
|
AM_CONDITIONAL([MCORE_BUILD_ELF], [$MCORE_BUILD_ELF])
|
|
AM_CONDITIONAL([MCORE_BUILD_PE], [$MCORE_BUILD_PE])
|