summaryrefslogtreecommitdiff
path: root/rbutil/sansapatcher/Makefile
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-09-19 18:46:54 +0000
committerDave Chapman <dave@dchapman.com>2007-09-19 18:46:54 +0000
commit8d145a55746ed3f0c131b6677c00bb126dc086c6 (patch)
treeb119e1ccf82561eb13d5b35ef759546a3fcbad0c /rbutil/sansapatcher/Makefile
parentdbbc8358ce1fdf963038240d43ea731e0fcf4abd (diff)
downloadrockbox-8d145a55746ed3f0c131b6677c00bb126dc086c6.tar.gz
rockbox-8d145a55746ed3f0c131b6677c00bb126dc086c6.zip
Initial attempt at c200 support - you now need both a "firmware.mi4" file (c200 bootloader) and "PP5022.mi4" file (e200 bootloader) to compile. sansapatcher should detect the device type and install the correct bootloader.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14755 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/sansapatcher/Makefile')
-rw-r--r--rbutil/sansapatcher/Makefile25
1 files changed, 14 insertions, 11 deletions
diff --git a/rbutil/sansapatcher/Makefile b/rbutil/sansapatcher/Makefile
index b05d8f3257..3786a41030 100644
--- a/rbutil/sansapatcher/Makefile
+++ b/rbutil/sansapatcher/Makefile
@@ -14,30 +14,33 @@ CC = $(CROSS)gcc
14 14
15all: $(OUTPUT) 15all: $(OUTPUT)
16 16
17sansapatcher: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg.c 17sansapatcher: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg_c200.c bootimg_e200.c
18 gcc $(CFLAGS) -o sansapatcher main.c sansapatcher.c sansaio-posix.c bootimg.c 18 gcc $(CFLAGS) -o sansapatcher main.c sansapatcher.c sansaio-posix.c bootimg_c200.c bootimg_e200.c
19 strip sansapatcher 19 strip sansapatcher
20 20
21sansapatcher.exe: main.c sansapatcher.c sansaio-win32.c parttypes.h bootimg.c 21sansapatcher.exe: main.c sansapatcher.c sansaio-win32.c parttypes.h bootimg_c200.c bootimg_e200.c
22 $(CC) $(CFLAGS) -o sansapatcher.exe main.c sansapatcher.c sansaio-win32.c bootimg.c 22 $(CC) $(CFLAGS) -o sansapatcher.exe main.c sansapatcher.c sansaio-win32.c bootimg_c200.c bootimg_e200.c
23 $(CROSS)strip sansapatcher.exe 23 $(CROSS)strip sansapatcher.exe
24 24
25sansapatcher-mac: sansapatcher-i386 sansapatcher-ppc 25sansapatcher-mac: sansapatcher-i386 sansapatcher-ppc
26 lipo -create sansapatcher-ppc sansapatcher-i386 -output sansapatcher-mac 26 lipo -create sansapatcher-ppc sansapatcher-i386 -output sansapatcher-mac
27 27
28sansapatcher-i386: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg.c 28sansapatcher-i386: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg_c200.c bootimg_e200.c
29 gcc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -o bin/i386/program -arch i386 $(CFLAGS) -o sansapatcher-i386 main.c sansapatcher.c sansaio-posix.c bootimg.c 29 gcc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -o bin/i386/program -arch i386 $(CFLAGS) -o sansapatcher-i386 main.c sansapatcher.c sansaio-posix.c bootimg_c200.c bootimg_e200.c
30 strip sansapatcher-i386 30 strip sansapatcher-i386
31 31
32sansapatcher-ppc: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg.c 32sansapatcher-ppc: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg_c200.c bootimg_e200.c
33 gcc -arch ppc $(CFLAGS) -o sansapatcher-ppc main.c sansapatcher.c sansaio-posix.c bootimg.c 33 gcc -arch ppc $(CFLAGS) -o sansapatcher-ppc main.c sansapatcher.c sansaio-posix.c bootimg_c200.c bootimg_e200.c
34 strip sansapatcher-ppc 34 strip sansapatcher-ppc
35 35
36bin2c: bin2c.c 36bin2c: bin2c.c
37 $(NATIVECC) $(CFLAGS) -o bin2c bin2c.c 37 $(NATIVECC) $(CFLAGS) -o bin2c bin2c.c
38 38
39bootimg.c: PP5022.mi4 bin2c 39bootimg_c200.c: firmware.mi4 bin2c
40 ./bin2c PP5022.mi4 bootimg 40 ./bin2c firmware.mi4 bootimg_c200
41
42bootimg_e200.c: PP5022.mi4 bin2c
43 ./bin2c PP5022.mi4 bootimg_e200
41 44
42clean: 45clean:
43 rm -f sansapatcher.exe sansapatcher-mac sansapatcher-i386 sansapatcher-ppc sansapatcher bin2c bootimg.c bootimg.h *~ 46 rm -f sansapatcher.exe sansapatcher-mac sansapatcher-i386 sansapatcher-ppc sansapatcher bin2c bootimg_c200.c bootimg_c200.h bootimg_e200.c bootimg_e200.h *~