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

4.104.114.84.95
Last change on this file since e9ae97fb was e9ae97fb, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/01 at 00:04:57

2001-11-08 Dennis Ehlin (ECS) <Dennis.Ehlin@…>

This modification is part of the submitted modifications necessary to
support the IBM PPC405 family. This submission was reviewed by
Thomas Doerfler <Thomas.Doerfler@…> who ensured it did
not negatively impact the ppc403 BSPs. The submission and tracking
process was captured as PR50.

  • ppc403/console/console405.c ppc403/tty_drv/.cvsignore, ppc403/tty_drv/Makefile.am, ppc403/tty_drv/tty_drv.c, ppc403/tty_drv/tty_drv.h: New files.
  • Makefile.am, README, configure.ac, old_exception_processing/cpu.c, old_exception_processing/cpu.h, ppc403/Makefile.am, ppc403/clock/clock.c, ppc403/console/Makefile.am, ppc403/console/console.c, ppc403/ictrl/ictrl.c, ppc403/ictrl/ictrl.h, ppc403/timer/timer.c: Modified.
  • Property mode set to 100644
File size: 3.0 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([mpc6xx])
8RTEMS_TOP(../../../../..)
9AC_CONFIG_AUX_DIR(../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu-powerpc,$RTEMS_VERSION,no)
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## there are no 601 or 602 BSPs currently.  The 505 BSPs are in user land.
40AM_CONDITIONAL(new_exception_processing, \
41test "$RTEMS_CPU_MODEL" = "mpc750" || \
42test "$RTEMS_CPU_MODEL" = "mpc604" || \
43test "$RTEMS_CPU_MODEL" = "mpc8xx" || \
44test "$RTEMS_CPU_MODEL" = "mpc8260" || \
45test "$RTEMS_CPU_MODEL" = "mpc860" \
46)
47
48## The goal is to get rid of the old exception processing code but
49## but all BSPs in the distribution must be migrated to the new model
50## first.
51AM_CONDITIONAL(old_exception_processing, \
52test "$RTEMS_CPU_MODEL" = "ppc403" || \
53test "$RTEMS_CPU_MODEL" = "ppc405" || \
54test "$RTEMS_CPU_MODEL" = "mpc505" || \
55test "$RTEMS_CPU_MODEL" = "ppc603e" \
56)
57
58## test on CPU type
59AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505")
60AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
61|| test "$RTEMS_CPU_MODEL" = "mpc604" \
62|| test "$RTEMS_CPU_MODEL" = "mpc750" )
63AM_CONDITIONAL(mpc8xx, test "$RTEMS_CPU_MODEL" = "mpc8xx" \
64|| test "$RTEMS_CPU_MODEL" = "mpc821" \
65|| test "$RTEMS_CPU_MODEL" = "mpc860" )
66AM_CONDITIONAL(mpc8260, test "$RTEMS_CPU_MODEL" = "mpc8260")
67AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
68AM_CONDITIONAL(ppc405, test "$RTEMS_CPU_MODEL" = "ppc405")
69
70# Explicitly list all Makefiles here
71AC_CONFIG_FILES([Makefile
72mpc505/Makefile
73mpc505/timer/Makefile
74mpc505/vectors/Makefile
75mpc505/ictrl/Makefile
76mpc8xx/Makefile
77mpc8xx/clock/Makefile
78mpc8xx/console-generic/Makefile
79mpc8xx/cpm/Makefile
80mpc8xx/exceptions/Makefile
81mpc8xx/include/Makefile
82mpc8xx/mmu/Makefile
83mpc8xx/timer/Makefile
84ppc403/Makefile
85ppc403/clock/Makefile
86ppc403/console/Makefile
87ppc403/tty_drv/Makefile
88ppc403/ictrl/Makefile
89ppc403/timer/Makefile
90ppc403/vectors/Makefile
91mpc6xx/Makefile
92mpc6xx/clock/Makefile
93mpc6xx/timer/Makefile
94mpc6xx/exceptions/Makefile
95mpc6xx/mmu/Makefile
96mpc6xx/timer/Makefile
97mpc6xx/wrapup/Makefile
98mpc8260/Makefile
99mpc8260/clock/Makefile
100mpc8260/console-generic/Makefile
101mpc8260/include/Makefile
102mpc8260/timer/Makefile
103mpc8260/exceptions/Makefile
104mpc8260/mmu/Makefile
105mpc8260/cpm/Makefile
106new_exception_processing/Makefile
107old_exception_processing/Makefile
108shared/Makefile
109shared/include/Makefile
110shared/src/Makefile
111wrapup/Makefile])
112AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.