forked from Imagelibrary/rtems
40 lines
818 B
Plaintext
40 lines
818 B
Plaintext
## Process this file with autoconf to produce a configure script.
|
|
##
|
|
## $Id$
|
|
|
|
AC_PREREQ(2.52)
|
|
AC_INIT
|
|
AC_CONFIG_SRCDIR([bsp_specs])
|
|
RTEMS_TOP(../../../../../..)
|
|
AC_CONFIG_AUX_DIR(../../../../../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-c4x-c4xsim,$RTEMS_VERSION,no)
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
|
|
RTEMS_CANONICALIZE_TOOLS
|
|
|
|
RTEMS_ENV_RTEMSBSP
|
|
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
|
|
RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
|
|
RTEMS_CANONICAL_HOST
|
|
|
|
RTEMS_CONFIG_BUILD_SUBDIRS(tools)
|
|
|
|
AM_CONFIG_HEADER(include/bspopts.h)
|
|
RTEMS_PROJECT_ROOT
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_CONFIG_FILES([Makefile
|
|
clock/Makefile
|
|
console/Makefile
|
|
include/Makefile
|
|
start/Makefile
|
|
startup/Makefile
|
|
timer/Makefile
|
|
wrapup/Makefile])
|
|
AC_OUTPUT
|
|
|
|
RTEMS_OUTPUT_BUILD_SUBDIRS(RTEMS_BUILD_SUBDIRS)
|