forked from Imagelibrary/rtems
<valette@crf.canon.fr> and Emmanuel Raguet <raguet@crf.canon.fr> of Canon CRF - Communication Dept. This port includes a basic BSP that is sufficient to link hello world.
44 lines
921 B
Plaintext
44 lines
921 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-arm-arm_bare_bsp,$RTEMS_VERSION,no)
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_PROG_CC_FOR_TARGET
|
|
RTEMS_CANONICALIZE_TOOLS
|
|
|
|
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");
|
|
|
|
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
|
|
|
|
AC_CONFIG_SUBDIRS(tools)
|
|
|
|
AC_SUBST(RTEMS_BSP)
|
|
|
|
RTEMS_PROJECT_ROOT
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_OUTPUT(
|
|
Makefile
|
|
console/Makefile
|
|
include/Makefile
|
|
irq/Makefile
|
|
start/Makefile
|
|
startup/Makefile
|
|
wrapup/Makefile)
|