mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Updated with new export dir
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3404 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9963c4570b
commit
6365f2a558
1 changed files with 12 additions and 4 deletions
|
|
@ -1,7 +1,8 @@
|
|||
FIRMWARE = ../..
|
||||
DRIVERS = ../../drivers
|
||||
EXPORT = ../../export
|
||||
|
||||
INCLUDE = -I$(DRIVERS) -I$(FIRMWARE) -I$(FIRMWARE)/common
|
||||
INCLUDE = -I$(EXPORT)
|
||||
RINCLUDE = -I$(FIRMWARE)/include
|
||||
DEFINES = -DTEST_FAT -DDEBUG -DCRT_DISPLAY -DDISK_WRITE
|
||||
|
||||
|
|
@ -13,7 +14,7 @@ TARGET = fat
|
|||
$(TARGET): fat.o ata-sim.o main.o disk.o debug.o dir.o file.o ctype.o
|
||||
gcc -g -o fat $+ -lfl
|
||||
|
||||
fat.o: $(DRIVERS)/fat.c $(DRIVERS)/fat.h $(DRIVERS)/ata.h
|
||||
fat.o: $(DRIVERS)/fat.c $(EXPORT)/fat.h $(EXPORT)/ata.h
|
||||
$(CC) $(CFLAGS) -DSIMULATOR -c $< -o $@
|
||||
|
||||
ctype.o: $(FIRMWARE)/common/ctype.c
|
||||
|
|
@ -31,10 +32,16 @@ file.o: $(FIRMWARE)/common/file.c
|
|||
debug.o: $(FIRMWARE)/debug.c
|
||||
$(CC) $(SIMFLAGS) -DSIMULATOR -c $< -o $@
|
||||
|
||||
ata-sim.o: ata-sim.c $(DRIVERS)/ata.h
|
||||
ata-sim.o: ata-sim.c $(EXPORT)/ata.h
|
||||
$(CC) $(SIMFLAGS) -DSIMULATOR -c $< -o $@
|
||||
|
||||
main.o: main.c $(DRIVERS)/ata.h
|
||||
dir.h: $(FIRMWARE)/include/dir.h
|
||||
ln -s $(FIRMWARE)/include/dir.h .
|
||||
|
||||
file.h: $(FIRMWARE)/include/file.h
|
||||
ln -s $(FIRMWARE)/include/file.h .
|
||||
|
||||
main.o: main.c $(EXPORT)/ata.h dir.h file.h
|
||||
$(CC) $(SIMFLAGS) -c $< -o $@
|
||||
|
||||
clean:
|
||||
|
|
@ -42,6 +49,7 @@ clean:
|
|||
rm -f *~
|
||||
rm -f cmd.tab.h lex.yy.c cmd.tab.c
|
||||
rm -f core
|
||||
rm -f dir.h file.h
|
||||
|
||||
tar:
|
||||
rm -f $(TARGET).tar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue