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 | |
| parent | dc2e7842fd97e40f80239e008da1dc86ae2d717b (diff) | |
| download | rockbox-473fe888d4a65b8075e09079ca3d6b90e9498037.zip rockbox-473fe888d4a65b8075e09079ca3d6b90e9498037.tar.gz rockbox-473fe888d4a65b8075e09079ca3d6b90e9498037.tar.bz2 rockbox-473fe888d4a65b8075e09079ca3d6b90e9498037.tar.xz | |
Removed -save-temps
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@621 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index dbcff16..d967022 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 |