summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-10-31 23:26:31 +0000
committerEric Andersen <andersen@codepoet.org>2002-10-31 23:26:31 +0000
commit7f90a63f7c40b4e4a23ebec81caf417b8f5260be (patch)
treec1d5e8f0670ea016c1a70bed6827eff6d89e4873 /Rules.mak
parent69007484498bbfd9e46d69ac8cb0f49a5db35e71 (diff)
Make it so arch specific stuff can be simpler. Initial attempt at
making CPU_CFLAGS, which should allow things to be optimized per-CPU and/or per-system. -Erik
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index 9ab391546..c0d0d2271 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -116,7 +116,7 @@ WARNINGS+=-Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
CFLAGS:=$(WARNINGS) $(OPTIMIZATION) -fno-builtin -nostdinc $(CPUFLAGS) \
- -I$(TOPDIR)include -iwithprefix include -I. -D_LIBC $(ARCH_CFLAGS)
+ -I$(TOPDIR)include -iwithprefix include -I. -D_LIBC $(CPU_CFLAGS) $(ARCH_CFLAGS)
NATIVE_CFLAGS:=-O2 -Wall
ifeq ($(strip $(DODEBUG)),y)