source: rtems/c/src/lib/libbsp/powerpc/psim/configure.ac @ 6af8512c

4.104.114.84.95
Last change on this file since 6af8512c was 6af8512c, checked in by Joel Sherrill <joel.sherrill@…>, on 11/21/01 at 18:34:28

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

  • Makefile.am: Add @exceptions@ to SUBDIRS.
  • configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from make/custom/psim.cfg; Remove RTEMS_OUTPUT_BUILD_SUBDIRS; Add RTEMS_PPC_EXCEPTIONS([old]).
  • include/Makefile.am: include force-preinstall.am.
  • wrapup/Makefile.am: Apply @exceptions@.
  • Property mode set to 100644
File size: 1.4 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-psim,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17
18RTEMS_ENV_RTEMSBSP
19RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
20RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
21RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
22RTEMS_CANONICAL_HOST
23
24AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
25
26RTEMS_CONFIG_BUILD_SUBDIRS(tools)
27
28RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[0])
29RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
30[If defined, then the PowerPC specific code in RTEMS will use some
31of the special purpose registers to slightly optimize interrupt
32response time.  The use of these registers can conflict with
33other tools like debuggers.])
34
35RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0xFFF00100])
36RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
37[This defines the base address of the exception table.
38 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
39
40AM_CONFIG_HEADER(include/bspopts.h)
41RTEMS_PROJECT_ROOT
42
43# Explicitly list all Makefiles here
44AC_CONFIG_FILES([Makefile
45clock/Makefile
46console/Makefile
47include/Makefile
48shmsupp/Makefile
49start/Makefile
50startup/Makefile
51timer/Makefile
52vectors/Makefile
53wrapup/Makefile])
54
55RTEMS_PPC_EXCEPTIONS([old])
56
57AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.