summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 21:43:14 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 21:43:14 +0000
commit3236c3581b591e2d482e356b979738ccc4b8f08f (patch)
treebeada323a1d405111219565146362a1938350d45 /firmware
parent88c398ab81d54c912a3db8e4c27abd1b52d7ff04 (diff)
-fomit-frame-pointer kills gdb stack trace, so I removed it
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@203 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/test/i2c/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/test/i2c/Makefile b/firmware/test/i2c/Makefile
index dbb874084f..fd3b9ad6a8 100644
--- a/firmware/test/i2c/Makefile
+++ b/firmware/test/i2c/Makefile
@@ -6,7 +6,7 @@ OC = sh-elf-objcopy
INCLUDES=-I../.. -I../../drivers
-CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns -fno-builtin $(INCLUDES)
+CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES)
AFLAGS += -small -relax
OBJS= crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o ../../debug.o
@@ -38,7 +38,7 @@ dist:
tar czvf dist.tar.gz Makefile main.c start.s app.lds
clean:
- -rm -f *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
+ -rm -f $(OBJS) *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
install:
mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos