forked from Imagelibrary/rtems
OK, I 've made up my mind to cut a big chunk of my automake-patches (:-).
Below you can find a drop-in replacement of the aclocal directory. It
contains a lot of new macro files, most of them are directly cut from rtems
top-level configure script, some are new some are identical to former
versions. The motivation behind these files is to reuse parts from rtems
current top-level configure.in script in up-coming subdirectory configure.in
scripts.
I'd like to ask you to untar the archive ontop of the source tree and to
add/commit these files to CVS. Adding these files should not have any
influence on RTEMS momentary configuration (except of you are required to
run aclocal -I aclocal && autoconf afterwards), because most of them
currently are not used at all.
---------
BTW: Please upgrade to autoconf-2.13 and automake-2.4, if you havn't done
this already (egcs/CVS require them, too). My upcoming automake files
require automake-2.4 which requires autoconf-2.13 or later.
22 lines
609 B
Plaintext
22 lines
609 B
Plaintext
AC_DEFUN(RTEMS_ENABLE_BARE,
|
|
[
|
|
AC_ARG_ENABLE(bare-cpu-cflags,
|
|
[ --enable-bare-cpu-cflags specify a particular cpu cflag]
|
|
[ (bare bsp specific)],
|
|
[case "${enableval}" in
|
|
no) BARE_CPU_CFLAGS="" ;;
|
|
*) BARE_CPU_CFLAGS="${enableval}" ;;
|
|
esac],
|
|
[BARE_CPU_CFLAGS=""])
|
|
|
|
AC_ARG_ENABLE(bare-cpu-model,
|
|
[ --enable-bare-cpu-model specify a particular cpu model]
|
|
[ (bare bsp specific)],
|
|
[case "${enableval}" in
|
|
no) BARE_CPU_MODEL="" ;;
|
|
*) BARE_CPU_MODEL="${enableval}" ;;
|
|
esac],
|
|
[BARE_CPU_MODEL=""])
|
|
])
|
|
|