source: rtems/c/src/lib/libbsp/powerpc/gen405/configure.ac @ fc16e17

4.104.114.84.95
Last change on this file since fc16e17 was fc16e17, checked in by Joel Sherrill <joel.sherrill@…>, on 11/27/01 at 01:20:22

2001-11-26 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Remove . from SUBDIRS, remove duplicate bsp_specs rules, add @exceptions@ to SUBDIRS.
  • configure.ac: Add RTEMS_BSPOPTS_*(PPC_USE_SPRG), RTEMS_BSPOPTS_*(PPC_VECTOR_FILE_BASE), RTEMS_PPC_EXCEPTIONS([old]), autoupdate to autoconf 2.52.
  • include/Makefile.am: Convert PREINSTALL_FILES to TMPINSTALL_FILES, include force-preinstall.am.
  • wrapup/Makefile.am: Apply @exceptions@.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.52)
6AC_INIT
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-powerpc-gen405,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17RTEMS_ENABLE_NETWORKING
18
19RTEMS_ENV_RTEMSBSP
20RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
21RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
22RTEMS_CHECK_NETWORKING
23RTEMS_CANONICAL_HOST
24
25AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
26
27RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[1])
28RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
29[If defined, then the PowerPC specific code in RTEMS will use some
30 of the special purpose registers to slightly optimize interrupt 
31 response time.  The use of these registers can conflict with     
32 other tools like debuggers.])
33
34RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
35RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
36[This defines the base address of the exception table.
37 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
38
39AM_CONFIG_HEADER(include/bspopts.h)
40RTEMS_PROJECT_ROOT
41
42# Explicitly list all Makefiles here
43AC_CONFIG_FILES([Makefile
44dlentry/Makefile
45include/Makefile
46startup/Makefile
47wrapup/Makefile])
48
49RTEMS_PPC_EXCEPTIONS([old])
50
51AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.