AC_ARG_ENABLE([host-scheme-test],
AS_HELP_STRING([--enable-host-scheme-test],
[Test for working scheme on build host [[if necessary]]]))
- if test -f lib/all.com; then
- : ${enable_host_scheme_test=no}
+ if test x"${IS_NATIVE_RELEASE}" = xyes || test -f lib/all.com; then
+ : ${enable_host_scheme_test=no}
+ else
+ : ${enable_host_scheme_test=yes}
+ fi
+
+ AC_ARG_WITH([default-target],
+ AS_HELP_STRING([--with-default-target],
+ [Set the default make target [[all]]]))
+ if test x"${IS_NATIVE_RELEASE}" = xyes; then
+ : ${with_default_target=compile-microcode}
else
- : ${enable_host_scheme_test=yes}
+ : ${with_default_target=all}
fi
+ DEFAULT_TARGET=${with_default_target}
+AC_ARG_WITH([default-target],
+ AS_HELP_STRING([--with-default-target],
+ [Set the default make target [[all]]]))
+DEFAULT_TARGET=${with_default_target=all}
+
AC_CANONICAL_HOST
MIT_SCHEME_NATIVE_CODE([${enable_native_code}],[${host_cpu}])