summaryrefslogtreecommitdiff
path: root/firmware/test/i2c/Makefile
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-05-06 19:25:40 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-05-06 19:25:40 +0000
commitdba731f4b550b41d259ab2e63042a071cb52ebf8 (patch)
tree4b4ff01c7b8661ae175a85bf7389da03146d85f1 /firmware/test/i2c/Makefile
parent1e0323a1bd945f1e2d58ec42bdc644da0a2be087 (diff)
downloadrockbox-dba731f4b550b41d259ab2e63042a071cb52ebf8.tar.gz
rockbox-dba731f4b550b41d259ab2e63042a071cb52ebf8.zip
Serial DMA works
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@483 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/test/i2c/Makefile')
-rw-r--r--firmware/test/i2c/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/firmware/test/i2c/Makefile b/firmware/test/i2c/Makefile
index 63f0eb6a10..0a5d78e665 100644
--- a/firmware/test/i2c/Makefile
+++ b/firmware/test/i2c/Makefile
@@ -10,8 +10,8 @@ CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builti
10AFLAGS += -small -relax 10AFLAGS += -small -relax
11 11
12OBJS= ../../crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o \ 12OBJS= ../../crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o \
13 ../../debug.o ../../kernel.o ../../thread.o ../../common/sprintf.o \ 13 ../../debug.o ../../kernel.o thread.o ../../common/sprintf.o \
14 ../../panic.o mp3data.o 14 ../../panic.o ../../system.o ../../drivers/led.o mp3data.o
15 15
16%.o: %.S 16%.o: %.S
17 $(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $< 17 $(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $<
@@ -44,3 +44,7 @@ clean:
44 44
45install: 45install:
46 mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos 46 mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos
47
48thread.o: ../../thread.c
49 $(CC) -O $(CFLAGS) -c $<
50