summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-12-06 13:07:15 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-12-06 13:07:15 +0000
commitbaa8dd7cb078c31344e0169bf77fc5f5ec103eef (patch)
tree802e266850564e02f22a20b2b2390abd70fc8a5c /cpukit
parent2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-baa8dd7cb078c31344e0169bf77fc5f5ec103eef.tar.bz2
2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/compile.am: Rework *FLAGS, AM_*FLAGS handling.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/automake/compile.am10
2 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 99b177448e..d76b2ca41b 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * automake/compile.am: Rework *FLAGS, AM_*FLAGS handling.
+
+2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* automake/multilib.am: Don't include @RTEMS_BSP@.cfg.
* automake/compile.am: Remove hard-coded CFLAGS_PROFILE_V.
Add autoconf-supplied CPU_CFLAGS, CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V,
diff --git a/cpukit/automake/compile.am b/cpukit/automake/compile.am
index f51621b113..4a75984334 100644
--- a/cpukit/automake/compile.am
+++ b/cpukit/automake/compile.am
@@ -52,9 +52,8 @@ endif # RTEMS_USE_GCC
DEFS = @DEFS@
-CPPFLAGS = @CPPFLAGS@ $(CPU_DEFINES) \
- $(DEFINES) $(XCPPFLAGS) $(CPPFLAGS_GCC)
-CFLAGS = @CFLAGS@ $(CPU_CFLAGS) $(XCFLAGS)
+CPPFLAGS = @CPPFLAGS@ $(CPU_DEFINES) $(DEFINES) $(XCPPFLAGS)
+CFLAGS = @RTEMS_CFLAGS@ $(XCFLAGS)
ASFLAGS = $(CPU_ASFLAGS) $(CPU_CFLAGS) $(XASFLAGS)
#
@@ -168,8 +167,5 @@ CPP = @CPP@ $(GCCSPECS)
##
AM_CPPFLAGS = $(RTEMS_CPPFLAGS)
-
-AM_CFLAGS = $(RTEMS_CFLAGS_$(VARIANT_V)_V) $(CFLAGS_$(VARIANT_V)_V)
-
-# AM_CFLAGS = $(RTEMS_BSP_CFLAGS) $(RTEMS_CFLAGS)
+AM_CFLAGS =
AM_CCASFLAGS = $(RTEMS_BSP_CFLAGS) $(RTEMS_CPPFLAGS) $(RTEMS_ASFLAGS)