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

4.104.114.84.95
Last change on this file since d569ecb9 was 3f5480c, checked in by Joel Sherrill <joel.sherrill@…>, on 08/05/02 at 19:03:52

2002-08-05 Joel Sherrill <joel@…>

  • Per PR260 eliminate use of make-target-options. This impacted RTEMS allowing a distinction between the CPU32 and CPU32+ in the SuperCore? and required that the m68k optimized memcpy be moved to libcpu.
  • shared/misc/memcpy.c: Moved from score/cpu/m68k.
  • configure.ac, shared/Makefile.am: Modified to reflect new directory.
  • shared/misc/.cvsignore, shared/misc/Makefile.am: New file.
  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[d7aecdc]1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
[e3355c71]6AC_INIT([rtems-c-src-lib-libcpu-m68k],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
[d7aecdc]7AC_CONFIG_SRCDIR([m68040])
8RTEMS_TOP(../../../../..)
9AC_CONFIG_AUX_DIR(../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
[e3355c71]13AM_INIT_AUTOMAKE([no-define foreign 1.6])
[d7aecdc]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
26
27RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
29
30AM_CONDITIONAL(shared, test "$RTEMS_CPU_MODEL" = "m68020" \
31|| test "$RTEMS_CPU_MODEL" = "m68020" \
32|| test "$RTEMS_CPU_MODEL" = "m68030" \
33|| test "$RTEMS_CPU_MODEL" = "m68lc040" \
34|| test "$RTEMS_CPU_MODEL" = "m68040" \
35|| test "$RTEMS_CPU_MODEL" = "m68ec040" \
36|| test "$RTEMS_CPU_MODEL" = "m68lc040" \
[3f5480c]37|| test "$RTEMS_CPU_MODEL" = "m68060" \
38|| test "$RTEMS_CPU_MODEL" = "mcpu32" \
39|| test "$RTEMS_CPU_MODEL" = "mcpu32p" )
[d7aecdc]40
41AM_CONDITIONAL(m68040, test "$RTEMS_CPU_MODEL" = "m68040")
42
[62f48b3]43AM_CONDITIONAL(mcf5206, test "$RTEMS_CPU_MODEL" = "mcf5206")
44
[3f5480c]45AM_CONDITIONAL(mcpu32, test "$RTEMS_CPU_MODEL" = "mcpu32")
46
[62f48b3]47case "$RTEMS_CPU_MODEL" in
48mcf5206 ) AC_CONFIG_SUBDIRS([mcf5206]);;
49*) ;;
50esac
51
[d7aecdc]52# Explicitly list all Makefiles here
53AC_CONFIG_FILES([Makefile
54shared/Makefile
55shared/cache/Makefile
[3f5480c]56shared/misc/Makefile
[d7aecdc]57m68040/Makefile
58m68040/fpsp/Makefile])
59AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.