source: rtems/c/src/lib/libcpu/powerpc/configure.in @ 41ab6966

4.104.114.84.95
Last change on this file since 41ab6966 was 8ef3818, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 19:57:02

Patch from John Cotton <john.cotton@…>, Charles-Antoine Gauthier
<charles.gauthier@…>, and Darlene A. Stewart
<Darlene.Stewart@…> to add support for a number of very
significant things:

+ BSPs for many variations on the Motorola MBX8xx board series
+ Cache Manager including initial support for m68040

and PowerPC

+ Rework of mpc8xx libcpu code so all mpc8xx CPUs now use

same code base.

+ Rework of eth_comm BSP to utiltize above.

John reports this works on the 821 and 860

  • Property mode set to 100644
File size: 1.7 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" = "mpc604" \
31|| test "$RTEMS_CPU_MODEL" = "mpc6xx" \
32|| test "$RTEMS_CPU_MODEL" = "mpc821" \
33|| test "$RTEMS_CPU_MODEL" = "mpc860" \
34|| test "$RTEMS_CPU_MODEL" = "mpc8xx" )
35
36AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505")
37AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
38|| test "$RTEMS_CPU_MODEL" = "mpc604" \
39|| test "$RTEMS_CPU_MODEL" = "mpc750" )
40AM_CONDITIONAL(mpc8xx, test "$RTEMS_CPU_MODEL" = "mpc8xx" \
41|| test "$RTEMS_CPU_MODEL" = "mpc821" \
42|| test "$RTEMS_CPU_MODEL" = "mpc860" )
43AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
44
45# Explicitly list all Makefiles here
46AC_OUTPUT(
47Makefile
48mpc505/Makefile
49mpc505/timer/Makefile
50mpc505/vectors/Makefile
51mpc8xx/Makefile
52mpc8xx/clock/Makefile
53mpc8xx/console-generic/Makefile
54mpc8xx/cpm/Makefile
55mpc8xx/include/Makefile
56mpc8xx/mmu/Makefile
57mpc8xx/timer/Makefile
58mpc8xx/vectors/Makefile
59ppc403/Makefile
60ppc403/clock/Makefile
61ppc403/console/Makefile
62ppc403/ictrl/Makefile
63ppc403/timer/Makefile
64ppc403/vectors/Makefile
65mpc6xx/Makefile
66mpc6xx/clock/Makefile
67mpc6xx/timer/Makefile
68mpc6xx/exceptions/Makefile
69mpc6xx/mmu/Makefile
70mpc6xx/timer/Makefile
71mpc6xx/wrapup/Makefile
72shared/Makefile
73wrapup/Makefile)
Note: See TracBrowser for help on using the repository browser.