forked from Imagelibrary/rtems
that fixes the following problems: 1. Removing bogus ';' in some configure.in (cosmetical fix) 2. Moves GAS_CODE16 checks to libbsp/i386/*/configure.in (essential fix) #2 was responsible for the gcc/binutils-2.9.5 choking while building for the pc386.
41 lines
888 B
Plaintext
41 lines
888 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl
|
|
dnl $Id$
|
|
|
|
AC_PREREQ(2.13)
|
|
AC_INIT(bsp_specs)
|
|
RTEMS_TOP(../../../../../..)
|
|
AC_CONFIG_AUX_DIR(../../../../../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-i386-i386ex,$RTEMS_VERSION,no)
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_ENABLE_LIBCDIR
|
|
|
|
RTEMS_ENV_RTEMSBSP
|
|
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
|
|
RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
|
|
RTEMS_CHECK_NETWORKING
|
|
RTEMS_CANONICAL_HOST
|
|
|
|
dnl if this is an i386, does gas have good code16 support?
|
|
RTEMS_I386_GAS_CODE16
|
|
AM_CONDITIONAL(RTEMS_GAS_CODE16,test "$RTEMS_GAS_CODE16" = "yes");
|
|
|
|
RTEMS_PROJECT_ROOT
|
|
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
|
|
|
|
# Explicitly list all Makefile here
|
|
AC_OUTPUT(
|
|
Makefile
|
|
clock/Makefile
|
|
console/Makefile
|
|
include/Makefile
|
|
start/Makefile
|
|
startup/Makefile
|
|
timer/Makefile
|
|
network/Makefile
|
|
timer/Makefile
|
|
wrapup/Makefile)
|