mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Added disk/partition handling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@405 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
86a59ecdf6
commit
c7f7934e8f
8 changed files with 164 additions and 58 deletions
|
|
@ -1,18 +1,25 @@
|
|||
FIRMWARE = ../..
|
||||
DRIVERS = ../../drivers
|
||||
|
||||
CFLAGS = -g -Wall -DTEST_FAT -I$(DRIVERS) -I.
|
||||
CFLAGS = -g -Wall -DTEST_FAT -I$(DRIVERS) -I$(FIRMWARE)/common -I$(FIRMWARE) -I. -DDEBUG -DCRT_DISPLAY
|
||||
|
||||
TARGET = fat
|
||||
|
||||
$(TARGET): fat.o ata-sim.o debug.o
|
||||
$(TARGET): fat.o ata-sim.o debug.o main.o disk.o
|
||||
gcc -g -o fat $+ -lfl
|
||||
|
||||
fat.o: $(DRIVERS)/fat.c $(DRIVERS)/fat.h $(DRIVERS)/ata.h
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
disk.o: $(FIRMWARE)/common/disk.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
debug.o: $(FIRMWARE)/debug.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
ata-sim.o: ata-sim.c $(DRIVERS)/ata.h
|
||||
|
||||
debug.o: debug.c debug.h $(DRIVERS)/ata.h
|
||||
main.o: main.c $(DRIVERS)/ata.h
|
||||
|
||||
clean:
|
||||
rm -f *.o $(TARGET)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue