summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/make/ChangeLog4
-rw-r--r--c/src/make/aclocal/rtems-flags.m411
2 files changed, 15 insertions, 0 deletions
diff --git a/c/src/make/ChangeLog b/c/src/make/ChangeLog
index 076fb0c370..94e32cef22 100644
--- a/c/src/make/ChangeLog
+++ b/c/src/make/ChangeLog
@@ -1,3 +1,7 @@
+2005-01-05 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * aclocal/rtems-flags.new: New (moved from ../aclocal).
+
2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/enable-itron.m4: New (moved from ../aclocal).
diff --git a/c/src/make/aclocal/rtems-flags.m4 b/c/src/make/aclocal/rtems-flags.m4
new file mode 100644
index 0000000000..8e034e52c2
--- /dev/null
+++ b/c/src/make/aclocal/rtems-flags.m4
@@ -0,0 +1,11 @@
+## $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])
+])