source: rtems/c/src/lib/libcpu/powerpc/configure.ac @ 4cf920c4

4.104.114.84.95
Last change on this file since 4cf920c4 was 80bbfb9a, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:48:15

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

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • mpc505/ictrl/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc505/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc505/timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc505/vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc6xx/clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc6xx/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc6xx/exceptions/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc6xx/mmu/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc6xx/timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc6xx/wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/console-generic/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/cpm/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/exceptions/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/mmu/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8260/timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/console-generic/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/cpm/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/exceptions/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/mmu/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mpc8xx/timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • ppc403/clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • ppc403/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • ppc403/console/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • ppc403/ictrl/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • ppc403/timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • ppc403/tty_drv/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • ppc403/vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • shared/include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • shared/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • shared/src/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 2.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-libcpu-powerpc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([mpc6xx])
8RTEMS_TOP(../../../../..)
9AC_CONFIG_AUX_DIR(../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign 1.6])
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_BARE
17RTEMS_ENV_RTEMSBSP
18
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22RTEMS_PROJECT_ROOT
23
24RTEMS_PROG_CC_FOR_TARGET
25RTEMS_CANONICALIZE_TOOLS
26
27RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
29
30AM_CONDITIONAL(shared, test "$RTEMS_CPU_MODEL" = "mpc750" \
31|| test "$RTEMS_CPU_MODEL" = "ppc603e" \
32|| test "$RTEMS_CPU_MODEL" = "mpc604" \
33|| test "$RTEMS_CPU_MODEL" = "mpc6xx" \
34|| test "$RTEMS_CPU_MODEL" = "mpc821" \
35|| test "$RTEMS_CPU_MODEL" = "mpc860" \
36|| test "$RTEMS_CPU_MODEL" = "mpc8260" \
37|| test "$RTEMS_CPU_MODEL" = "mpc8xx" )
38
39## test on CPU type
40AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505")
41AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
42|| test "$RTEMS_CPU_MODEL" = "mpc604" \
43|| test "$RTEMS_CPU_MODEL" = "mpc750" )
44AM_CONDITIONAL(mpc8xx, test "$RTEMS_CPU_MODEL" = "mpc8xx" \
45|| test "$RTEMS_CPU_MODEL" = "mpc821" \
46|| test "$RTEMS_CPU_MODEL" = "mpc860" )
47AM_CONDITIONAL(mpc8260, test "$RTEMS_CPU_MODEL" = "mpc8260")
48AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
49AM_CONDITIONAL(ppc405, test "$RTEMS_CPU_MODEL" = "ppc405")
50
51# Explicitly list all Makefiles here
52AC_CONFIG_FILES([Makefile
53mpc505/Makefile
54mpc505/timer/Makefile
55mpc505/vectors/Makefile
56mpc505/ictrl/Makefile
57mpc8xx/Makefile
58mpc8xx/clock/Makefile
59mpc8xx/console-generic/Makefile
60mpc8xx/cpm/Makefile
61mpc8xx/exceptions/Makefile
62mpc8xx/include/Makefile
63mpc8xx/mmu/Makefile
64mpc8xx/timer/Makefile
65ppc403/Makefile
66ppc403/clock/Makefile
67ppc403/console/Makefile
68ppc403/tty_drv/Makefile
69ppc403/ictrl/Makefile
70ppc403/timer/Makefile
71ppc403/vectors/Makefile
72mpc6xx/Makefile
73mpc6xx/clock/Makefile
74mpc6xx/timer/Makefile
75mpc6xx/exceptions/Makefile
76mpc6xx/mmu/Makefile
77mpc6xx/timer/Makefile
78mpc6xx/wrapup/Makefile
79mpc8260/Makefile
80mpc8260/clock/Makefile
81mpc8260/console-generic/Makefile
82mpc8260/include/Makefile
83mpc8260/timer/Makefile
84mpc8260/exceptions/Makefile
85mpc8260/mmu/Makefile
86mpc8260/cpm/Makefile
87shared/Makefile
88shared/include/Makefile
89shared/src/Makefile
90wrapup/Makefile])
91AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.