diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-05-17 17:06:02 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-17 17:06:02 +0000 |
commit | 473fe888d4a65b8075e09079ca3d6b90e9498037 (patch) | |
tree | 8153daa9caa15fa65e0b94f7a262fe586c149cab /firmware/Makefile | |
parent | dc2e7842fd97e40f80239e008da1dc86ae2d717b (diff) |
Removed -save-temps
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@621 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/Makefile')
-rw-r--r-- | firmware/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index dbcff16eb8..d9670222b4 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -20,12 +20,12 @@ TARGET = -DARCHOS_PLAYER=1 #TARGET = -DARCHOS_PLAYER_OLD=1 #TARGET = -DARCHOS_RECORDER=1 -CFLAGS = -W -Wall -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET) +CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET) ifdef DEBUG -CFLAGS += -O -g -DDEBUG +CFLAGS += -g -DDEBUG else -CFLAGS += -O -fomit-frame-pointer -fschedule-insns -save-temps +CFLAGS += -fomit-frame-pointer -fschedule-insns endif AFLAGS += -small -relax |