source: rtems/cpukit/acinclude.m4 @ 3da33bf8

4.104.114.84.95
Last change on this file since 3da33bf8 was 3da33bf8, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/20/03 at 07:02:53

2003-11-20 Ralf Corsepius <corsepiu@…>

  • acinclude.m4: New.
  • configure.ac: Don't use AUTOHEADER to generate cpuopts.h. Add local autoheader config.h.
  • aclocal/canonical-target-name.m4: Require AC_CANONICAL_HOST.
  • aclocal/enable-inlines.m4: Remove USE_MACROS (Unused).
  • Property mode set to 100644
File size: 244 bytes
RevLine 
[3da33bf8]1# RTEMS_CPUOPT(NAME,CONDITION,VALUE,EXPLANATION)
2
3AC_DEFUN([RTEMS_CPUOPT],
4[
5  echo >> cpuopts.tmp
6  echo "/* $4 */" >> cpuopts.tmp
7  if $2; then
8    echo "#define $1 $3" >> cpuopts.tmp
9  else
10    echo "/* #undef $1 */" >> cpuopts.tmp
11  fi
12])
Note: See TracBrowser for help on using the repository browser.