source: rtems/c/src/lib/libbsp/powerpc/haleakala/configure.ac @ 39ee704e

4.115
Last change on this file since 39ee704e was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.68])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-haleakala],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
5AC_CONFIG_SRCDIR([bsp_specs])
6RTEMS_TOP(../../../../../..)
7
8RTEMS_CANONICAL_TARGET_CPU
9AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.11.1])
10RTEMS_BSP_CONFIGURE
11
12RTEMS_PROG_CC_FOR_TARGET
13RTEMS_CANONICALIZE_TOOLS
14RTEMS_PROG_CCAS
15
16RTEMS_CHECK_NETWORKING
17
18AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
19
20RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[1])
21RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
22[If defined, then the PowerPC specific code in RTEMS will use some
23 of the special purpose registers to slightly optimize interrupt
24 response time.  The use of these registers can conflict with
25 other tools like debuggers.])
26
27RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
28RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
29[This defines the base address of the exception table.
30 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
31
32RTEMS_BSP_CLEANUP_OPTIONS(0, 1)
33
34# Explicitly list all Makefiles here
35AC_CONFIG_FILES([Makefile])
36
37RTEMS_PPC_EXCEPTIONS
38
39AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.