diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-23 13:15:40 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-23 13:15:40 +0000 |
| commit | d851644fed1715883b710343a8a278bf81368369 (patch) | |
| tree | 440b6f0ce445b05c90280c5a52700aa1f2867e59 | |
| parent | 963a64770e0e1e8b3505f31bfc7b241d72ba752e (diff) | |
| download | rockbox-d851644fed1715883b710343a8a278bf81368369.zip rockbox-d851644fed1715883b710343a8a278bf81368369.tar.gz rockbox-d851644fed1715883b710343a8a278bf81368369.tar.bz2 rockbox-d851644fed1715883b710343a8a278bf81368369.tar.xz | |
Adapted to the new directory structure
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@197 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/test/i2c/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/test/i2c/Makefile b/firmware/test/i2c/Makefile index 9866796..dbb8740 100644 --- a/firmware/test/i2c/Makefile +++ b/firmware/test/i2c/Makefile @@ -4,12 +4,12 @@ AR = sh-elf-ar AS = sh-elf-as OC = sh-elf-objcopy -INCLUDES=-I../../ +INCLUDES=-I../.. -I../../drivers CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns -fno-builtin $(INCLUDES) AFLAGS += -small -relax -OBJS= crt0.o main.o ../../i2c.o ../../mas.o ../../debug.o +OBJS= crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o ../../debug.o %.o: %.S $(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $< |