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

4.104.114.84.95
Last change on this file since bc2f04f was bc2f04f, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 14:50:45

Patch rtems-rc-20000104-13.diff from Ralf Corsepius <corsepiu@…>
which does the following:

  • some cleanups, fixes, addtions to the libbsp automake transition patches
  • The missing Automake transistion patches all libcpu/<cpu>/<variant>/* previously not yet been converted to automake (libcpu/powerpc, libcpu/hppa1.1, libcpu/mips64orion, libcpu/sparc)

=> With this patch, libcpu/*/* is under full automake control.

NOTES:

  • This patch is tested by building for random set of bsps affected by this patch, but not tested for all BSPs.
  • The parts of this patch related to libcpu/powerpc fix many small bugs inside of those Makefiles.
  • Have a look into libcpu/powerpc/mpc6xx/, which is in rather bad shape, IMO. Obviously most subdirectories seem to be build but are not included into libcpu.a by wrapup/Makefile. Addtionally, no actual BSP uses this cpu-variant subdirectory. Furthermore libcpu/powerpc/mpc6xx has a different directory layout than all other powerpc/<variant>/ directories.

Joel's note: I agree but the issue is that there is a conflict between
including timer or clock in libcpu/XXX/wrapup/Makefile.* and letting
a BSP specifically decide to pick it up. There is no clear solution
to this at the moment.

  • Property mode set to 100644
File size: 1.6 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_LIBCDIR
16
17RTEMS_ENABLE_BARE
18RTEMS_ENV_RTEMSBSP
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
23RTEMS_PROJECT_ROOT
24
25dnl check target cc
26RTEMS_PROG_CC_FOR_TARGET
27RTEMS_CANONICALIZE_TOOLS
28
29RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
30RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
31
32AM_CONDITIONAL(shared,
33test "$RTEMS_CPU_MODEL" = "mpc750" \
34|| test "$RTEMS_CPU_MODEL" = "mpc604" )
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(mpc821, test "$RTEMS_CPU_MODEL" = "mpc821")
41AM_CONDITIONAL(mpc860, test "$RTEMS_CPU_MODEL" = "mpc860")
42AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
43
44AC_OUTPUT(
45Makefile
46mpc505/Makefile
47mpc505/timer/Makefile
48mpc505/vectors/Makefile
49mpc821/Makefile
50mpc821/clock/Makefile
51mpc821/console-generic/Makefile
52mpc821/include/Makefile
53mpc821/timer/Makefile
54mpc821/vectors/Makefile
55mpc860/Makefile
56mpc860/clock/Makefile
57mpc860/console-generic/Makefile
58mpc860/include/Makefile
59mpc860/timer/Makefile
60mpc860/vectors/Makefile
61ppc403/Makefile
62ppc403/clock/Makefile
63ppc403/console/Makefile
64ppc403/ictrl/Makefile
65ppc403/timer/Makefile
66ppc403/vectors/Makefile
67mpc6xx/Makefile
68mpc6xx/clock/Makefile
69mpc6xx/exceptions/Makefile
70mpc6xx/mmu/Makefile
71mpc6xx/timer/Makefile
72mpc6xx/wrapup/Makefile
73shared/Makefile
74wrapup/Makefile)
Note: See TracBrowser for help on using the repository browser.