4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-25 16:47:20 +08:00
Mike Frysinger f4c8e1623b libgloss: merge mcore into top-level Makefile
Avoid a recursive make to speed things up a bit.
A mcore-elf build shows installed objects & libs produce same code.
2024-01-19 20:26:52 -05:00

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])