source: rtems/c/src/lib/libbsp/powerpc/helas403/configure.ac @ b64367d

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

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

  • Makefile.am: Remove . from SUBDIRS, add @exceptions@ to SUBDIRS.
  • configure.ac: Add RTEMS_BSPOPTS_*(PPC_USE_SPRG), RTEMS_BSPOPTS_*(PPC_VECTOR_FILE_BASE), RTEMS_PPC_EXCEPTIONS([old]).
  • 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 
1## Process this file with autoconf to produce a configure script.
2##
3## $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-helas403,$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
30of the special purpose registers to slightly optimize interrupt
31response time.  The use of these registers can conflict with
32other 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
45flashentry/Makefile
46include/Makefile
47startup/Makefile
48wrapup/Makefile])
49
50RTEMS_PPC_EXCEPTIONS([old])
51
52AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.