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.zip rockbox-97531e8f6c9cffbbc28d71e575a52c34773f691e.tar.gz rockbox-97531e8f6c9cffbbc28d71e575a52c34773f691e.tar.bz2 rockbox-97531e8f6c9cffbbc28d71e575a52c34773f691e.tar.xz | |
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 f047948..fe0f85e 100644 --- a/firmware/test/i2c/Makefile +++ b/firmware/test/i2c/Makefile @@ -8,12 +8,12 @@ INCLUDES=-I../../common -I../.. -I../../drivers TARGET = -DARCHOS_PLAYER_OLD=1 -CFLAGS = -g -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET) -DDEBUG +CFLAGS = -g -W -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET) -DDEBUG AFLAGS += -small -relax OBJS= ../../crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o \ ../../debug.o ../../kernel.o thread.o ../../common/sprintf.o \ - ../../panic.o ../../system.o ../../drivers/led.o \ + ../../drivers/dac.o ../../panic.o ../../system.o ../../drivers/led.o \ ../../drivers/lcd.o ata.o ../../drivers/fat.o \ ../../common/disk.o ../../common/file.o ../../common/dir.o @@ -44,7 +44,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) *.x *.i *.o *.s *.elf *.bin *.map *.mod *.bak *~ install: mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos |