summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-08-30 23:17:04 +0000
committerDave Chapman <dave@dchapman.com>2006-08-30 23:17:04 +0000
commit530f31dbe9fe404d41fd21867c8ed9cec1addd96 (patch)
treeec4caa9ead19f3e0756e4cb02bf11d6f8e4163e2 /tools/Makefile
parente379225754b326806df1a037a7610e3b2c1a11bc (diff)
downloadrockbox-530f31dbe9fe404d41fd21867c8ed9cec1addd96.tar.gz
rockbox-530f31dbe9fe404d41fd21867c8ed9cec1addd96.zip
Add generation of .mi4 files - the generic PortalPlayer firmware format used by the iriver H10, Sansa E200 etc. Based on the documentation available at http://daniel.haxx.se/sansa/mi4.html and examination of files produced by mkmi4.sh
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10816 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 68fcd4b6bc..53b1200fce 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -10,17 +10,18 @@ CFLAGS := -O -ansi -g
10LDFLAGS := -g 10LDFLAGS := -g
11 11
12CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \ 12CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \
13 generate_rocklatin mkboot ipod_fw codepages uclpack 13 generate_rocklatin mkboot ipod_fw codepages uclpack mi4
14 14
15all: 15all:
16 @echo "Run make in your build directory!" 16 @echo "Run make in your build directory!"
17 17
18scramble: scramble.o iriver.o 18scramble: scramble.o iriver.o mi4.o
19descramble: descramble.o iriver.o 19descramble: descramble.o iriver.o
20 20
21scramble.o: scramble.c iriver.h 21scramble.o: scramble.c iriver.h
22descramble.o: descramble.c iriver.h 22descramble.o: descramble.c iriver.h
23iriver.o: iriver.c iriver.h 23iriver.o: iriver.c iriver.h
24mi4.o: mi4.c mi4.h
24 25
25sh2d: sh2d.c 26sh2d: sh2d.c
26 27