source: rtems/c/src/lib/libcpu/powerpc/configure.in @ 6a041407

4.104.114.84.95
Last change on this file since 6a041407 was a982e0c6, checked in by Joel Sherrill <joel.sherrill@…>, on 10/18/00 at 18:24:43

2000-10-18 Sergei Organov <osv@…>

  • Added full support for MPC505.
  • mpc505/ictrl: New directory.
  • configure.in, mpc505/Makefile.am: Modified to reflect ictrl addition.
  • mpc505/ictrl/.cvsignore, mpc505/ictrl/Makefile.am, mpc505/ictrl/ictrl.c, mpc505/ictrl/ictrl.h: New files.
  • mpc505/timer/timer.c: Use <rtems.h>, not "rtems.h".
  • mpc505/vectors/Makefile.am: alignment exception handler now included.
  • mpc505/vectors/vectors.S: Now use constants for exception numbers.
  • old_exception_processing/ppc_offs.h: New file.
  • old_exception_processing/Makefile.am: Account for ppc_offs.h.
  • old_exception_processing/cpu.h: Make Nest and Disable levels volatile.
  • old_exception_processing/cpu_asm.S: Offsets moved to ppc_offs.h.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(mpc6xx)
7RTEMS_TOP(../../../../..)
8AC_CONFIG_AUX_DIR(../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu-powerpc,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_BARE
16RTEMS_ENV_RTEMSBSP
17
18RTEMS_CHECK_CPU
19RTEMS_CANONICAL_HOST
20
21RTEMS_PROJECT_ROOT
22
23RTEMS_PROG_CC_FOR_TARGET
24RTEMS_CANONICALIZE_TOOLS
25
26RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
27RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
28
29AM_CONDITIONAL(shared, test "$RTEMS_CPU_MODEL" = "mpc750" \
30|| test "$RTEMS_CPU_MODEL" = "ppc603e" \
31|| test "$RTEMS_CPU_MODEL" = "mpc604" \
32|| test "$RTEMS_CPU_MODEL" = "mpc6xx" \
33|| test "$RTEMS_CPU_MODEL" = "mpc821" \
34|| test "$RTEMS_CPU_MODEL" = "mpc860" \
35|| test "$RTEMS_CPU_MODEL" = "mpc8xx" )
36
37AM_CONDITIONAL(new_exception_processing, \
38test "$RTEMS_CPU_MODEL" = "mpc750" || \
39test "$RTEMS_CPU_MODEL" = "mpc604")
40
41AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505")
42AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
43|| test "$RTEMS_CPU_MODEL" = "mpc604" \
44|| test "$RTEMS_CPU_MODEL" = "mpc750" )
45AM_CONDITIONAL(mpc8xx, test "$RTEMS_CPU_MODEL" = "mpc8xx" \
46|| test "$RTEMS_CPU_MODEL" = "mpc821" \
47|| test "$RTEMS_CPU_MODEL" = "mpc860" )
48AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
49
50# Explicitly list all Makefiles here
51AC_OUTPUT(
52Makefile
53mpc505/Makefile
54mpc505/timer/Makefile
55mpc505/vectors/Makefile
56mpc505/ictrl/Makefile
57mpc8xx/Makefile
58mpc8xx/clock/Makefile
59mpc8xx/console-generic/Makefile
60mpc8xx/cpm/Makefile
61mpc8xx/include/Makefile
62mpc8xx/mmu/Makefile
63mpc8xx/timer/Makefile
64mpc8xx/vectors/Makefile
65ppc403/Makefile
66ppc403/clock/Makefile
67ppc403/console/Makefile
68ppc403/ictrl/Makefile
69ppc403/timer/Makefile
70ppc403/vectors/Makefile
71mpc6xx/Makefile
72mpc6xx/clock/Makefile
73mpc6xx/timer/Makefile
74mpc6xx/exceptions/Makefile
75mpc6xx/mmu/Makefile
76mpc6xx/timer/Makefile
77mpc6xx/wrapup/Makefile
78new_exception_processing/Makefile
79old_exception_processing/Makefile
80shared/Makefile
81shared/include/Makefile
82shared/src/Makefile
83wrapup/Makefile)
Note: See TracBrowser for help on using the repository browser.