mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
23 lines
387 B
Plaintext
23 lines
387 B
Plaintext
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
|
|
|
|
AC_CHECK_HEADERS(unistd.h)
|
|
|
|
COPRO="armcopro.o maverick.o"
|
|
CON_FLAGS=
|
|
case x$target_alias in
|
|
xxscale-*)
|
|
COPRO="armcopro.o maverick.o iwmmxt.o"
|
|
CON_FLAGS=-D__IWMMXT__
|
|
;;
|
|
esac
|
|
|
|
AC_SUBST(CON_FLAGS)
|
|
AC_SUBST(COPRO)
|
|
|
|
SIM_AC_OUTPUT
|