mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-01 17:39:55 +08:00
12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
## $Id$
|
|
##
|
|
## Some hacks to set up RTEMS_*FLAGS
|
|
## Internal macro, not supposed to be explictly used in configure.ac's
|
|
|
|
AC_DEFUN([_RTEMS_FLAGS],[
|
|
AS_IF([test -n "[$]{$1}"],
|
|
[RTEMS_$1=[$]{$1}],
|
|
[RTEMS_$1=$2])
|
|
AC_SUBST([RTEMS_$1])
|
|
])
|