summaryrefslogtreecommitdiffstats
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
all: $(OUTPUT)
-sansapatcher: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg.c
- gcc $(CFLAGS) -o sansapatcher main.c sansapatcher.c sansaio-posix.c bootimg.c
+sansapatcher: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg_c200.c bootimg_e200.c
+ gcc $(CFLAGS) -o sansapatcher main.c sansapatcher.c sansaio-posix.c bootimg_c200.c bootimg_e200.c
strip sansapatcher
-sansapatcher.exe: main.c sansapatcher.c sansaio-win32.c parttypes.h bootimg.c
- $(CC) $(CFLAGS) -o sansapatcher.exe main.c sansapatcher.c sansaio-win32.c bootimg.c
+sansapatcher.exe: main.c sansapatcher.c sansaio-win32.c parttypes.h bootimg_c200.c bootimg_e200.c
+ $(CC) $(CFLAGS) -o sansapatcher.exe main.c sansapatcher.c sansaio-win32.c bootimg_c200.c bootimg_e200.c
$(CROSS)strip sansapatcher.exe
sansapatcher-mac: sansapatcher-i386 sansapatcher-ppc
lipo -create sansapatcher-ppc sansapatcher-i386 -output sansapatcher-mac
-sansapatcher-i386: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg.c
- 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
+sansapatcher-i386: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg_c200.c bootimg_e200.c
+ 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
strip sansapatcher-i386
-sansapatcher-ppc: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg.c
- gcc -arch ppc $(CFLAGS) -o sansapatcher-ppc main.c sansapatcher.c sansaio-posix.c bootimg.c
+sansapatcher-ppc: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg_c200.c bootimg_e200.c
+ gcc -arch ppc $(CFLAGS) -o sansapatcher-ppc main.c sansapatcher.c sansaio-posix.c bootimg_c200.c bootimg_e200.c
strip sansapatcher-ppc
bin2c: bin2c.c
$(NATIVECC) $(CFLAGS) -o bin2c bin2c.c
-bootimg.c: PP5022.mi4 bin2c
- ./bin2c PP5022.mi4 bootimg
+bootimg_c200.c: firmware.mi4 bin2c
+ ./bin2c firmware.mi4 bootimg_c200
+
+bootimg_e200.c: PP5022.mi4 bin2c
+ ./bin2c PP5022.mi4 bootimg_e200
clean:
- rm -f sansapatcher.exe sansapatcher-mac sansapatcher-i386 sansapatcher-ppc sansapatcher bin2c bootimg.c bootimg.h *~
+ rm -f sansapatcher.exe sansapatcher-mac sansapatcher-i386 sansapatcher-ppc sansapatcher bin2c bootimg_c200.c bootimg_c200.h bootimg_e200.c bootimg_e200.h *~