summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-10-18 11:56:36 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-10-18 11:56:36 +0000
commit104ff627bc4ed86bf8c79f7646f47f1e69acf7c2 (patch)
tree2316274c3cbc4edbe4baa1af9174d9edca72e4ea /c
parent2006-10-18 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-104ff627bc4ed86bf8c79f7646f47f1e69acf7c2.tar.bz2
2006-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* automake/compile.am: Use hard-coded RTEMS_* flags.
Diffstat (limited to 'c')
-rw-r--r--c/src/ChangeLog4
-rw-r--r--c/src/automake/compile.am8
2 files changed, 8 insertions, 4 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index b7864329c0..b6f1b1afed 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,5 +1,9 @@
2006-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * automake/compile.am: Use hard-coded RTEMS_* flags.
+
+2006-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>
+
* aclocal/rtems-top.m4: Remove RTEMS_API.
* aclocal/version.m4: Add RTEMS_API. Bump RTEMS_API to 4.8.
diff --git a/c/src/automake/compile.am b/c/src/automake/compile.am
index 8ac24ffc70..6ba8636096 100644
--- a/c/src/automake/compile.am
+++ b/c/src/automake/compile.am
@@ -10,7 +10,7 @@ CPP = @CPP@ $(GCCSPECS)
CCAS = @CCAS@ $(GCCSPECS)
##
-AM_CPPFLAGS = $(RTEMS_CPPFLAGS)
-AM_CFLAGS = $(RTEMS_CFLAGS)
-AM_CXXFLAGS = $(RTEMS_CFLAGS)
-AM_CCASFLAGS = $(RTEMS_CPPFLAGS) $(RTEMS_CCASFLAGS)
+AM_CPPFLAGS = @RTEMS_CPPFLAGS@
+AM_CFLAGS = @RTEMS_CFLAGS@
+AM_CXXFLAGS = @RTEMS_CFLAGS@
+AM_CCASFLAGS = @RTEMS_CCASFLAGS@