summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-05-16 21:00:41 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-05-16 21:00:41 +0000
commit97531e8f6c9cffbbc28d71e575a52c34773f691e (patch)
tree03bf42e82782c9b253c5fbd2163429273875b2f0 /firmware
parent29b6b51c5eb8cb68310eb959d057d01f427e459c (diff)
downloadrockbox-97531e8f6c9cffbbc28d71e575a52c34773f691e.tar.gz
rockbox-97531e8f6c9cffbbc28d71e575a52c34773f691e.zip
Added dac.o
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@603 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/test/i2c/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/test/i2c/Makefile b/firmware/test/i2c/Makefile
index f0479482f9..fe0f85e59e 100644
--- a/firmware/test/i2c/Makefile
+++ b/firmware/test/i2c/Makefile
@@ -8,12 +8,12 @@ INCLUDES=-I../../common -I../.. -I../../drivers
8 8
9TARGET = -DARCHOS_PLAYER_OLD=1 9TARGET = -DARCHOS_PLAYER_OLD=1
10 10
11CFLAGS = -g -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET) -DDEBUG 11CFLAGS = -g -W -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET) -DDEBUG
12AFLAGS += -small -relax 12AFLAGS += -small -relax
13 13
14OBJS= ../../crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o \ 14OBJS= ../../crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o \
15 ../../debug.o ../../kernel.o thread.o ../../common/sprintf.o \ 15 ../../debug.o ../../kernel.o thread.o ../../common/sprintf.o \
16 ../../panic.o ../../system.o ../../drivers/led.o \ 16 ../../drivers/dac.o ../../panic.o ../../system.o ../../drivers/led.o \
17 ../../drivers/lcd.o ata.o ../../drivers/fat.o \ 17 ../../drivers/lcd.o ata.o ../../drivers/fat.o \
18 ../../common/disk.o ../../common/file.o ../../common/dir.o 18 ../../common/disk.o ../../common/file.o ../../common/dir.o
19 19
@@ -44,7 +44,7 @@ dist:
44 tar czvf dist.tar.gz Makefile main.c start.s app.lds 44 tar czvf dist.tar.gz Makefile main.c start.s app.lds
45 45
46clean: 46clean:
47 -rm -f $(OBJS) *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~ 47 -rm -f $(OBJS) *.x *.i *.o *.s *.elf *.bin *.map *.mod *.bak *~
48 48
49install: 49install:
50 mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos 50 mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos