source: rtems/c/src/lib/libcpu/powerpc/configure.in @ 80e5391

4.104.114.84.95
Last change on this file since 80e5391 was 80e5391, checked in by Joel Sherrill <joel.sherrill@…>, on 07/07/00 at 19:36:14

Moved old_exception_processing and new_exception_processing directories
from score/cpu to libcpu because the determination of which to use is
based on RTEMS_CPU_MODEL. Thus it can not be determined based solely on
multilib information.

  • 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
56mpc8xx/Makefile
57mpc8xx/clock/Makefile
58mpc8xx/console-generic/Makefile
59mpc8xx/cpm/Makefile
60mpc8xx/include/Makefile
61mpc8xx/mmu/Makefile
62mpc8xx/timer/Makefile
63mpc8xx/vectors/Makefile
64ppc403/Makefile
65ppc403/clock/Makefile
66ppc403/console/Makefile
67ppc403/ictrl/Makefile
68ppc403/timer/Makefile
69ppc403/vectors/Makefile
70mpc6xx/Makefile
71mpc6xx/clock/Makefile
72mpc6xx/timer/Makefile
73mpc6xx/exceptions/Makefile
74mpc6xx/mmu/Makefile
75mpc6xx/timer/Makefile
76mpc6xx/wrapup/Makefile
77new_exception_processing/Makefile
78old_exception_processing/Makefile
79shared/Makefile
80shared/include/Makefile
81shared/src/Makefile
82wrapup/Makefile)
Note: See TracBrowser for help on using the repository browser.