2000-07-27 19:23:39 +08:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2011-10-18 08:17:24 +08:00
|
|
|
AC_PREREQ(2.64)dnl
|
2000-07-27 19:23:39 +08:00
|
|
|
AC_INIT(Makefile.in)
|
2011-10-18 08:31:00 +08:00
|
|
|
sinclude(../common/acinclude.m4)
|
2000-07-27 19:23:39 +08:00
|
|
|
|
2011-10-18 08:17:24 +08:00
|
|
|
SIM_AC_COMMON
|
2005-01-15 04:05:48 +08:00
|
|
|
|
2000-07-27 19:23:39 +08:00
|
|
|
dnl Options available in this module
|
2016-01-03 06:46:16 +08:00
|
|
|
SIM_AC_OPTION_ENDIAN(BIG)
|
2000-07-27 19:23:39 +08:00
|
|
|
SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
|
|
|
|
SIM_AC_OPTION_WARNINGS
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add simulated hardware devices
|
|
|
|
#
|
|
|
|
hw_enabled=no
|
|
|
|
case "${target}" in
|
|
|
|
m68hc11-*-*|m6811-*-*)
|
|
|
|
hw_enabled=yes
|
|
|
|
hw_extra_devices="m68hc11 m68hc11sio m68hc11eepr m68hc11tim m68hc11spi nvram"
|
|
|
|
SIM_SUBTARGET="$SIM_SUBTARGET -DTARGET_M68HC11=1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
SIM_AC_OPTION_HARDWARE($hw_enabled,$hw_devices,$hw_extra_devices)
|
|
|
|
|
|
|
|
SIM_AC_OUTPUT
|