mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
538a37be5b
Move the minor mn10300-specific logic to a dedicated file & namespace them so we can merge its configure logic up a level. part_specific_obj wasn't used anywhere (looks like copy & paste left over from mips), so drop it entirely.
15 lines
320 B
Plaintext
15 lines
320 B
Plaintext
MN10300_SCRIPT_LIST=
|
|
MN10300_BSP_LIST=
|
|
case "${target}" in
|
|
mn10300-*elf)
|
|
MN10300_SCRIPT_LIST="eval sim asb2303 asb2305"
|
|
MN10300_BSP_LIST="libeval.a libcygmon.a"
|
|
;;
|
|
*)
|
|
MN10300_SCRIPT_LIST="eval sim"
|
|
MN10300_BSP_LIST="libeval.a"
|
|
;;
|
|
esac
|
|
AC_SUBST(MN10300_SCRIPT_LIST)
|
|
AC_SUBST(MN10300_BSP_LIST)
|