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

4.104.114.84.95
Last change on this file since dc17e8ed was d521eaa, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:41:42

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • bootloader/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • console/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • motorola/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • openpic/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • pci/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • residual/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • start/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • 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([rtems-c-src-lib-libbsp-powerpc-motorola_powerpc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE([no-define foreign 1.6])
13RTEMS_BSP_CONFIGURE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17
18RTEMS_CHECK_NETWORKING
19AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
20
21AS=$CC
22AM_PROG_AS
23
24RTEMS_BSPOPTS_SET([PPC_USE_DATA_CACHE],[*],[1])
25RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
26[If defined, then the PowerPC specific code in RTEMS will use
27 data cache instructions to optimize the context switch code.
28 This code can conflict with debuggers or emulators.  It is known
29 to break the Corelis PowerPC emulator with at least some combinations
30 of PowerPC 603e revisions and emulator versions.
31 The BSP actually contains the call that enables this.])
32
33
34# Explicitly list all Makefiles here
35AC_CONFIG_FILES([Makefile
36bootloader/Makefile
37clock/Makefile
38console/Makefile
39include/Makefile
40irq/Makefile
41motorola/Makefile
42openpic/Makefile
43pci/Makefile
44residual/Makefile
45start/Makefile
46startup/Makefile
47vectors/Makefile
48wrapup/Makefile])
49
50RTEMS_PPC_EXCEPTIONS([new])
51
52AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.