source: rtems/c/src/lib/libbsp/lm32/milkymist/configure.ac @ e6e9cbe

4.115
Last change on this file since e6e9cbe was 8ee3775, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/02/11 at 15:01:43

2011-02-02 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Require autoconf-2.68, automake-1.11.1.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ([2.68])
6AC_INIT([rtems-c-src-lib-libbsp-lm32-milkymist],
7  [_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
8AC_CONFIG_SRCDIR([bsp_specs])
9RTEMS_TOP(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.11.1])
13RTEMS_BSP_CONFIGURE
14
15RTEMS_PROG_CC_FOR_TARGET
16RTEMS_CANONICALIZE_TOOLS
17RTEMS_PROG_CCAS
18
19RTEMS_CHECK_NETWORKING
20AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
21
22RTEMS_BSPOPTS_SET([ON_SIMULATOR],[*],[])
23RTEMS_BSPOPTS_HELP([ON_SIMULATOR],
24[If defined, this indicates the BSP is being built to run on the lm32
25 simulator in GDB.  This enables fast idle support which speeds up the
26 clock ticks while the idle task is running so time spent in the idle
27 task is minimized.  This significantly reduces the wall time required
28 to execute the RTEMS test suites.  It also enables a special exit and
29 alternate printk support.])
30
31RTEMS_BSP_CLEANUP_OPTIONS(0,0)
32# Explicitly list all Makefiles here
33AC_CONFIG_FILES([Makefile])
34AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.