source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/configure.ac @ c43d7bd

4.104.114.84.95
Last change on this file since c43d7bd was 4fe0abdc, checked in by Joel Sherrill <joel.sherrill@…>, on 11/21/01 at 18:38:48

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

  • Makefile.am: Add @exceptions@ to SUBDIRS; Remove need_motorola_powerpc.
  • configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from make/custom/mcp750.cfg, make/custom/mvme2307.cfg; Remove need_motorola_powerpc; Add RTEMS_PPC_EXCEPTIONS([new]).
  • include/Makefile.am: Replace PREINSTALL_FILES with TMPINSTALL_FILES, 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-motorola_powerpc,$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")
26AS=$CC
27AM_PROG_AS
28
29RTEMS_BSPOPTS_SET([PPC_USE_DATA_CACHE],[*],[1])
30RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
31[If defined, then the PowerPC specific code in RTEMS will use
32 data cache instructions to optimize the context switch code.
33 This code can conflict with debuggers or emulators.  It is known
34 to break the Corelis PowerPC emulator with at least some combinations
35 of PowerPC 603e revisions and emulator versions.
36 The BSP actually contains the call that enables this.])
37
38AM_CONFIG_HEADER(include/bspopts.h)
39RTEMS_PROJECT_ROOT
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile
43bootloader/Makefile
44clock/Makefile
45console/Makefile
46include/Makefile
47irq/Makefile
48motorola/Makefile
49openpic/Makefile
50pci/Makefile
51residual/Makefile
52start/Makefile
53startup/Makefile
54vectors/Makefile
55wrapup/Makefile])
56
57RTEMS_PPC_EXCEPTIONS([new])
58
59AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.