source: rtems/aclocal/check-cpu.m4 @ 1cd9dfc

4.104.114.84.95
Last change on this file since 1cd9dfc was 0e08a3c3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/22/02 at 10:13:20

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

  • aclocal/check-cpu.m4: Peek into cpukit/score/cpu instead of exec/score/cpu.
  • Property mode set to 100644
File size: 365 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])
11# FIXME: Temporary hack
12if test -d "$srcdir/$RTEMS_TOPdir/cpukit/score/cpu/$RTEMS_CPU"; then
13  AC_MSG_RESULT(yes)
14else
15  AC_MSG_ERROR(no)
16fi
17])dnl
18
Note: See TracBrowser for help on using the repository browser.