source: rtems/c/src/lib/libbsp/sparc/leon/configure.ac @ ccd81b60

4.104.114.84.95
Last change on this file since ccd81b60 was ccd81b60, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/11/03 at 11:47:49

2003-02-11 Ralf Corsepius <corsepiu@…>

  • configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
  • Property mode set to 100644
File size: 1.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-lib-libbsp-sparc-leon],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
13RTEMS_BSP_CONFIGURE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17
18RTEMS_CONFIG_BUILD_SUBDIRS(tools)
19
20## bsp-specific options
21RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
22RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
23[The erc32 console driver can operate in either polled or interrupt mode.
24Under the simulator (especially when FAST_UART is defined), polled seems to operate
25better.  It is common for a task to print a line (like the end of test message) and
26then exit.  In this case, the program returns control to the simulator command line
27before the program has even queued the output to the uart.  Thus sis has no chance
28of getting the data out.])
29
30RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[])
31RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE],
32[If defined, speed up the clock ticks while the idle task is running so
33 time spent in the idle task is minimized.  This significantly reduces
34 the wall time required to execute the RTEMS test suites.])
35
36# Explicitly list all Makefiles here
37AC_CONFIG_FILES([Makefile
38clock/Makefile
39console/Makefile
40gnatsupp/Makefile
41include/Makefile
42start/Makefile
43startup/Makefile
44timer/Makefile
45wrapup/Makefile])
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.