source: rtems/c/src/lib/libcpu/powerpc/configure.in @ 5e77d129

4.104.114.84.95
Last change on this file since 5e77d129 was 61bd0301, checked in by Joel Sherrill <joel.sherrill@…>, on 06/14/00 at 15:52:24

Moved PowerPC cache management code to libcpu. Also compiled
mpc8xx libcpu support for the first time and remove includes
of bsp.h, references to BSP_Configuration, and Cpu_table. All
of these can be obtained directly from RTEMS now.

  • Property mode set to 100644
File size: 1.8 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
73shared/include/Makefile
74shared/src/Makefile
75wrapup/Makefile)
Note: See TracBrowser for help on using the repository browser.