X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=sim%2Fucsim%2Fconfigure.in;h=9f25ae00e102ba942a50faec9914ab0b65f0963c;hb=b9855fd6b84616c3963897a10fa20ea93531e5ce;hp=79972a34168e59f86b5cb1181669c3150eeafea9;hpb=5a6565d7f9e272d2ff45c18260e818f01670d44e;p=fw%2Fsdcc diff --git a/sim/ucsim/configure.in b/sim/ucsim/configure.in index 79972a34..9f25ae00 100644 --- a/sim/ucsim/configure.in +++ b/sim/ucsim/configure.in @@ -58,6 +58,12 @@ if test $enable_z80 != "no"; then enable_z80="yes" fi, enable_z80="no") +AC_ARG_ENABLE(hc08, +[ --enable-hc08 compile simulator for hc08], +if test $enable_hc08 != "no"; then + enable_hc08="yes" +fi, +enable_hc08="yes") AC_ARG_ENABLE(xa, [ --enable-xa compile simulator for XA], if test $enable_xa != "no"; then @@ -75,19 +81,36 @@ AC_SUBST(enable_dlso) AC_SUBST(enable_51) AC_SUBST(enable_avr) AC_SUBST(enable_z80) +AC_SUBST(enable_hc08) AC_SUBST(enable_xa) AC_SUBST(enable_serio) +AC_ARG_ENABLE(statistic, +[ --enable-statistic compile statistical features (slower simulation)], +if test $enable_statistic != "no"; then + enable_statistic="yes" +fi, +enable_statistic="no") +AC_DEFINE_UNQUOTED(STATISTIC, $enable_statistic) + + # Required programs #------------------- AC_PROG_CXX AC_PROG_CXXCPP AC_PROG_INSTALL AC_PROG_RANLIB -AC_LANG_CPLUSPLUS +dnl AC_LANG_CPLUSPLUS AC_CHECK_PROG(STRIP, strip, strip, :) +AC_LIBTOOL_DLOPEN +dnl AC_LIBTOOL_WIN32_DLL +AC_PROG_LIBTOOL +AC_SUBST(LIBTOOL_DEPS) + +AC_LANG_CPLUSPLUS + # Checking for header files. # =========================================================================== @@ -454,6 +477,7 @@ cmd.src/Makefile s51.src/Makefile avr.src/Makefile z80.src/Makefile +hc08.src/Makefile xa.src/Makefile gui.src/Makefile gui.src/serio.src/Makefile