diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-05-16 21:00:41 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-05-16 21:00:41 +0000 |
commit | 97531e8f6c9cffbbc28d71e575a52c34773f691e (patch) | |
tree | 03bf42e82782c9b253c5fbd2163429273875b2f0 | |
parent | 29b6b51c5eb8cb68310eb959d057d01f427e459c (diff) | |
download | rockbox-97531e8f6c9cffbbc28d71e575a52c34773f691e.tar.gz rockbox-97531e8f6c9cffbbc28d71e575a52c34773f691e.zip |
Added dac.o
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@603 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/test/i2c/Makefile | 6 |
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 | ||
9 | TARGET = -DARCHOS_PLAYER_OLD=1 | 9 | TARGET = -DARCHOS_PLAYER_OLD=1 |
10 | 10 | ||
11 | CFLAGS = -g -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET) -DDEBUG | 11 | CFLAGS = -g -W -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET) -DDEBUG |
12 | AFLAGS += -small -relax | 12 | AFLAGS += -small -relax |
13 | 13 | ||
14 | OBJS= ../../crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o \ | 14 | OBJS= ../../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 | ||
46 | clean: | 46 | clean: |
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 | ||
49 | install: | 49 | install: |
50 | mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos | 50 | mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos |