source: rtems/cpukit/aclocal/check-cpu.m4 @ 47c6985d

4.104.114.84.95
Last change on this file since 47c6985d was 60f3702, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/17/02 at 22:28:20

2002-07-17 Ralf Corsepius <corsepiu@…>

  • aclocal/rtems-top.m4: Reflect relocation of c/src/exec to cpukit.
  • aclocal/check-cpu.m4: Ditto.
  • aclocal/check-bsps.m4: Ditto.
  • Property mode set to 100644
File size: 341 bytes
Line 
1dnl $Id$
2
3dnl check if RTEMS support a cpu
4AC_DEFUN(RTEMS_CHECK_CPU,
5[dnl
6AC_REQUIRE([RTEMS_TOP])
7AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])
8
9# Is this a supported CPU?
10AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported])
11if test -d "$srcdir/$RTEMS_TOPdir/cpukit/score/cpu/$RTEMS_CPU"; then
12  AC_MSG_RESULT(yes)
13else
14  AC_MSG_ERROR(no)
15fi
16])dnl
17
Note: See TracBrowser for help on using the repository browser.