summaryrefslogblamecommitdiffstats
path: root/cpukit/acinclude.m4
blob: 8cceb116823f9a11b5e1ec4d6a57d9a970540650 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                
# RTEMS_CPUOPT(NAME,CONDITION,VALUE,EXPLANATION)

AC_DEFUN([RTEMS_CPUOPT],
[
  echo >> cpuopts.tmp
  echo "/* $4 */" >> cpuopts.tmp
  if $2; then
    echo "#define $1 $3" >> cpuopts.tmp
  else
    echo "/* #undef $1 */" >> cpuopts.tmp
  fi 
])