source: rtems/c/src/lib/libcpu/m68k/configure.ac @ 0730209

4.104.114.84.95
Last change on this file since 0730209 was 0730209, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/01/02 at 12:14:38

2002-12-01 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add RTEMS_PROG_CCAS.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT([rtems-c-src-lib-libcpu-m68k],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([m68040])
8RTEMS_TOP(../../../../..)
9AC_CONFIG_AUX_DIR(../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign 1.6])
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_BARE
17RTEMS_ENV_RTEMSBSP
18
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22RTEMS_PROJECT_ROOT
23
24RTEMS_PROG_CC_FOR_TARGET
25RTEMS_CANONICALIZE_TOOLS
26RTEMS_PROG_CCAS
27
28RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
29RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
30
31# At this time all models should use the shared directory so do this
32AM_CONDITIONAL(shared, true)
33
34AM_CONDITIONAL(m68040, test "$RTEMS_CPU_MODEL" = "m68040")
35
36AM_CONDITIONAL(mcf5206, test "$RTEMS_CPU_MODEL" = "mcf5206")
37
38AM_CONDITIONAL(mcpu32, test "$RTEMS_CPU_MODEL" = "m68340" \
39|| test "$RTEMS_CPU_MODEL" = "m68331" \
40|| test "$RTEMS_CPU_MODEL" = "m68332" \
41|| test "$RTEMS_CPU_MODEL" = "m68336" \
42|| test "$RTEMS_CPU_MODEL" = "m68337" \
43|| test "$RTEMS_CPU_MODEL" = "mcpu32" \
44)
45
46AM_CONDITIONAL(mcpu32p, test "$RTEMS_CPU_MODEL" = "m68360" \
47|| test "$RTEMS_CPU_MODEL" = "mcpu32p" \
48)
49
50AM_CONDITIONAL(mcf5272, test "$RTEMS_CPU_MODEL" = "mcf5272" )
51
52case "$RTEMS_CPU_MODEL" in
53mcf5206 ) AC_CONFIG_SUBDIRS([mcf5206]);;
54*) ;;
55esac
56
57# Explicitly list all Makefiles here
58AC_CONFIG_FILES([Makefile
59shared/Makefile
60shared/cache/Makefile
61shared/misc/Makefile
62m68040/Makefile
63m68040/fpsp/Makefile])
64AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.