source: rtems/c/src/exec/score/cpu/m68k/configure.in @ ccf8925b

4.104.114.84.95
Last change on this file since ccf8925b was ccf8925b, checked in by Joel Sherrill <joel.sherrill@…>, on 12/01/99 at 14:22:12

Patch rtems-rc-19991123-rc-1.diff from Ralf Corsepius
<corsepiu@…> which implements automake support for some
score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration
bugs.

To apply:

rm -rf c/src/exec/score/cpu/i960/wrap
rm -rf c/src/exec/score/cpu/m68k/wrap
rm -rf c/src/exec/score/cpu/sh/wrap
rm -rf c/src/exec/score/cpu/sparc/wrap
rm -rf c/src/exec/score/cpu/unix/wrap
patch -p1 < rtems-rc-19991123-rc-1.diff
./bootstrap

Known bugs:

  • "make debug|profile" in c/src/src/score/cpu/<RTEMS_CPU/Makefile does not handle recursion to subdirectories correctly (recurses too often). However, this issue is hardly visible and should be tolerable for the moment.
  • Property mode set to 100644
File size: 756 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(cpu_asm.S)
7RTEMS_TOP(../../../../../..)
8AC_CONFIG_AUX_DIR(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-m68k,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_LIBCDIR
16
17RTEMS_ENV_RTEMSBSP
18
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22RTEMS_PROJECT_ROOT
23
24dnl check target cc
25RTEMS_PROG_CC_FOR_TARGET
26RTEMS_CANONICALIZE_TOOLS
27
28RTEMS_CHECK_NEWLIB
29
30# Check if there is custom/*.cfg for this BSP
31RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
32
33PROJECT_INCLUDE="\$(PROJECT_ROOT)/$RTEMS_BSP/lib/include"
34AC_SUBST(PROJECT_INCLUDE)
35
36# Try to explicitly list a Makefile here
37AC_OUTPUT(
38Makefile
39rtems/Makefile
40rtems/score/Makefile)
Note: See TracBrowser for help on using the repository browser.