summaryrefslogtreecommitdiff
path: root/firmware/test/kernel/Makefile
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-04-24 22:46:02 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-04-24 22:46:02 +0000
commit99406a6635f91f5fc716cd0ca28e8364f7a97061 (patch)
tree9b40610620a87976d3306d8fa9c197c9b720b11c /firmware/test/kernel/Makefile
parent17ad78974206a6a22e424d81c867d2927685aad0 (diff)
downloadrockbox-99406a6635f91f5fc716cd0ca28e8364f7a97061.zip
rockbox-99406a6635f91f5fc716cd0ca28e8364f7a97061.tar.gz
rockbox-99406a6635f91f5fc716cd0ca28e8364f7a97061.tar.bz2
rockbox-99406a6635f91f5fc716cd0ca28e8364f7a97061.tar.xz
Tick timer additions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@219 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/test/kernel/Makefile')
-rw-r--r--firmware/test/kernel/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/test/kernel/Makefile b/firmware/test/kernel/Makefile
index cec39b1..f632b3f 100644
--- a/firmware/test/kernel/Makefile
+++ b/firmware/test/kernel/Makefile
@@ -14,7 +14,7 @@ TARGET = -DARCHOS_PLAYER_OLD=1
CFLAGS = -g -O -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET)
AFLAGS += -small -relax
-OBJS= ../../crt0.o ../../drivers/lcd.o ../../system.o main.o ../../thread.o ../../debug.o
+OBJS= ../../crt0.o ../../system.o main.o timer.o ../../thread.o ../../debug.o
%.o: %.S
$(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $<
@@ -41,7 +41,7 @@ dist:
tar czvf dist.tar.gz Makefile main.c start.s app.lds
clean:
- -rm -f $(OBJS) *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
+ -rm -f $(OBJS) *.s *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
install:
mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos