27 lines
576 B
Text
27 lines
576 B
Text
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
sinclude(../common/aclocal.m4)
|
||
|
AC_PREREQ(2.5)dnl
|
||
|
AC_INIT(Makefile.in)
|
||
|
|
||
|
|
||
|
SIM_AC_COMMON
|
||
|
|
||
|
program_transform_name="s,^,${program_prefix}gx-,"
|
||
|
target_alias="${target_alias}-gx"
|
||
|
|
||
|
sim_link_files="${sim_link_files} m32r-sim.h ../../opcodes/m32r-opc.h"
|
||
|
sim_link_links="${sim_link_links} cpu-sim.h cpu-opc.h"
|
||
|
|
||
|
SIM_AC_OPTION_ENDIAN(BIG_ENDIAN)
|
||
|
SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
|
||
|
SIM_AC_OPTION_HOSTENDIAN
|
||
|
SIM_AC_OPTION_DEFAULT_MODEL(m32r/d)
|
||
|
SIM_AC_OPTION_ENVIRONMENT
|
||
|
|
||
|
AC_CHECK_LIB(dl, dlopen)
|
||
|
|
||
|
SIM_AC_OUTPUT
|
||
|
|
||
|
|
||
|
|