summaryrefslogtreecommitdiff
path: root/firmware/test/fat/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-04-26 16:44:58 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-04-26 16:44:58 +0000
commit1dff4b65f725c2174c65698e498b1d58d61e3968 (patch)
tree14403dd8415cc0fd6389bb873ae166ded43dd6ee /firmware/test/fat/Makefile
parentcfc2bbeef28cfd0159d59ef813ac2a7b956f13a8 (diff)
downloadrockbox-1dff4b65f725c2174c65698e498b1d58d61e3968.tar.gz
rockbox-1dff4b65f725c2174c65698e498b1d58d61e3968.zip
FAT update
Added fat test code git-svn-id: svn://svn.rockbox.org/rockbox/trunk@254 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/test/fat/Makefile')
-rw-r--r--firmware/test/fat/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/firmware/test/fat/Makefile b/firmware/test/fat/Makefile
new file mode 100644
index 0000000000..8b60aba99c
--- /dev/null
+++ b/firmware/test/fat/Makefile
@@ -0,0 +1,25 @@
1DRIVERS = ../../drivers
2
3CFLAGS = -g -Wall -DTEST_FAT -I$(DRIVERS) -I.
4
5TARGET = fat
6
7$(TARGET): fat.o ata-sim.o debug.o
8 gcc -g -o fat $+ -lfl
9
10fat.o: $(DRIVERS)/fat.c $(DRIVERS)/fat.h $(DRIVERS)/ata.h
11 $(CC) $(CFLAGS) -c $< -o $@
12
13ata-sim.o: ata-sim.c $(DRIVERS)/ata.h
14
15debug.o: debug.c debug.h $(DRIVERS)/ata.h
16
17clean:
18 rm -f *.o $(TARGET)
19 rm -f *~
20 rm -f cmd.tab.h lex.yy.c cmd.tab.c
21 rm -f core
22
23tar:
24 rm -f $(TARGET).tar
25 tar cvf $(TARGET).tar -C .. fat