mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
Initial commit of sansapatcher - an installation tool for the Sansa E200.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12792 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a42070df85
commit
e17043ead7
7 changed files with 1469 additions and 0 deletions
44
rbutil/sansapatcher/Makefile
Normal file
44
rbutil/sansapatcher/Makefile
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
CFLAGS=-Wall -D_LARGEFILE64_SOURCE
|
||||
|
||||
ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
|
||||
OUTPUT=sansapatcher.exe
|
||||
CROSS=
|
||||
CFLAGS+=-mno-cygwin
|
||||
else
|
||||
OUTPUT=sansapatcher
|
||||
CROSS=i586-mingw32msvc-
|
||||
endif
|
||||
|
||||
NATIVECC = gcc
|
||||
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
|
||||
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
|
||||
$(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
|
||||
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
|
||||
strip sansapatcher-ppc
|
||||
|
||||
#mi42c: mi42c.c
|
||||
# $(NATIVECC) $(CFLAGS) -o mi42c mi42c.c
|
||||
|
||||
#bootimg.c: PP5022.mi4 mi42c
|
||||
# ./mi42c PP5022.mi4 bootimg
|
||||
|
||||
clean:
|
||||
rm -f sansapatcher.exe sansapatcher-mac sansapatcher-i386 sansapatcher-ppc sansapatcher mi42c *~
|
||||
#bootimg.c bootimg.h
|
||||
Loading…
Add table
Add a link
Reference in a new issue