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

4.104.114.84.95
Last change on this file since bf85b19 was 70810dc, checked in by Joel Sherrill <joel.sherrill@…>, on 02/08/00 at 22:33:25

Patches rtems-rc-20000204-0.diff from Ralf Corsepius <corsepiu@…>
that contains:

  • Removes remaining (now illegal) references to $(SRC) from a couple of Makefile.ams
  • Removes duplicate AC_CONFIG_SUBDIRS macro from c/configure.in
  • Moves ENABLE_LIBCDIR into RTEMS_PROG_C[C|XX]_FOR_TARGET (hides LIBCDIR from most configure scripts, i.e. LIBCDIR becomes less visible)
  • Adds RTEMS_PROG_C[C|XX]_FOR_TARGET and RTEMS_CANONICALIZE_TOOLS to libbsp/*/configure.ins (A minor bug in previous implementations, which only has an impact when switching to GNU/Cygnus canonicalization)
  • Cleans up several bogus comments.
  • Removes MKLIB
  • Switches the version number to 4.5.0 (for testing version number handling)
  • 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,
30test "$RTEMS_CPU_MODEL" = "mpc750" \
31|| test "$RTEMS_CPU_MODEL" = "mpc604" )
32
33AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505")
34AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
35|| test "$RTEMS_CPU_MODEL" = "mpc604" \
36|| test "$RTEMS_CPU_MODEL" = "mpc750" )
37AM_CONDITIONAL(mpc821, test "$RTEMS_CPU_MODEL" = "mpc821")
38AM_CONDITIONAL(mpc860, test "$RTEMS_CPU_MODEL" = "mpc860")
39AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
40
41# Explicitly list all Makefiles here
42AC_OUTPUT(
43Makefile
44mpc505/Makefile
45mpc505/timer/Makefile
46mpc505/vectors/Makefile
47mpc821/Makefile
48mpc821/clock/Makefile
49mpc821/console-generic/Makefile
50mpc821/include/Makefile
51mpc821/timer/Makefile
52mpc821/vectors/Makefile
53mpc860/Makefile
54mpc860/clock/Makefile
55mpc860/console-generic/Makefile
56mpc860/include/Makefile
57mpc860/timer/Makefile
58mpc860/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.