summaryrefslogtreecommitdiffstats
path: root/cpukit/automake
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-11-15 15:00:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-11-15 15:00:13 +0000
commit789a953dec3a473d9987e1df935a20752c9307c2 (patch)
tree79fa8c1c2f2b82b44eea67e44d47f71c55d8adf1 /cpukit/automake
parent2002-11-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-789a953dec3a473d9987e1df935a20752c9307c2.tar.bz2
2002-11-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/prog-cc.m4: Acknowledge configuration-time CFLAGS. * automake/compile.am: Acknowledge configuration-time CFLAGS. Remove CFLAGS_DEFAULT.
Diffstat (limited to 'cpukit/automake')
-rw-r--r--cpukit/automake/compile.am4
1 files changed, 1 insertions, 3 deletions
diff --git a/cpukit/automake/compile.am b/cpukit/automake/compile.am
index 33f37ca4bd..4f79d0eb9f 100644
--- a/cpukit/automake/compile.am
+++ b/cpukit/automake/compile.am
@@ -42,8 +42,6 @@
if RTEMS_USE_GCC
## All the stuff below is specific to gcc
-
-CFLAGS_DEFAULT=-g -Wall
## gcc >= 2.8.x
GCCSPECS = $(GCC_SPECS)
else
@@ -56,7 +54,7 @@ DEFS = @DEFS@
CPPFLAGS = @CPPFLAGS@ $(CPU_DEFINES) \
$(DEFINES) $(XCPPFLAGS) $(CPPFLAGS_GCC)
-CFLAGS = $(CFLAGS_DEFAULT) $(CPU_CFLAGS) $(XCFLAGS)
+CFLAGS = @CFLAGS@ $(CPU_CFLAGS) $(XCFLAGS)
ASFLAGS = $(CPU_ASFLAGS) $(CPU_CFLAGS) $(XASFLAGS)
## FIXME: This doesn't seem to be correct