mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Make bin2c compile with VS2005 and move it to a separate folder as its getting used by different tools now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21272 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1c83e6ab90
commit
73f9bde908
4 changed files with 41 additions and 11 deletions
|
@ -42,14 +42,11 @@ sansapatcher-ppc: main.c sansapatcher.c sansaio-posix.c parttypes.h bootimg_c200
|
||||||
gcc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -arch ppc $(CFLAGS) -o sansapatcher-ppc main.c sansapatcher.c sansaio-posix.c bootimg_c200.c bootimg_e200.c
|
gcc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -arch ppc $(CFLAGS) -o sansapatcher-ppc main.c sansapatcher.c sansaio-posix.c bootimg_c200.c bootimg_e200.c
|
||||||
strip sansapatcher-ppc
|
strip sansapatcher-ppc
|
||||||
|
|
||||||
bin2c: bin2c.c
|
bootimg_c200.c: firmware.mi4 ../tools/bin2c
|
||||||
$(NATIVECC) $(CFLAGS) -o bin2c bin2c.c
|
../tools/bin2c firmware.mi4 bootimg_c200
|
||||||
|
|
||||||
bootimg_c200.c: firmware.mi4 bin2c
|
bootimg_e200.c: PP5022.mi4 ../tools/bin2c
|
||||||
./bin2c firmware.mi4 bootimg_c200
|
../tools/bin2c PP5022.mi4 bootimg_e200
|
||||||
|
|
||||||
bootimg_e200.c: PP5022.mi4 bin2c
|
|
||||||
./bin2c PP5022.mi4 bootimg_e200
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f sansapatcher.exe sansapatcher-mac sansapatcher-i386 sansapatcher-ppc sansapatcher bin2c bootimg_c200.c bootimg_c200.h bootimg_e200.c bootimg_e200.h *~
|
rm -f sansapatcher.exe sansapatcher-mac sansapatcher-i386 sansapatcher-ppc sansapatcher bootimg_c200.c bootimg_c200.h bootimg_e200.c bootimg_e200.h *~
|
||||||
|
|
25
rbutil/tools/Makefile
Normal file
25
rbutil/tools/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
CFLAGS=-Wall -W -D_LARGEFILE64_SOURCE
|
||||||
|
|
||||||
|
ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
|
||||||
|
CROSS=
|
||||||
|
CFLAGS+=-mno-cygwin
|
||||||
|
else
|
||||||
|
ifeq ($(findstring MINGW,$(shell uname)),MINGW)
|
||||||
|
CROSS=
|
||||||
|
else
|
||||||
|
CROSS=i586-mingw32msvc-
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
NATIVECC = gcc
|
||||||
|
CC = $(CROSS)gcc
|
||||||
|
WINDRES = $(CROSS)windres
|
||||||
|
|
||||||
|
|
||||||
|
all: bin2c
|
||||||
|
|
||||||
|
bin2c: bin2c.c
|
||||||
|
$(NATIVECC) $(CFLAGS) -o bin2c bin2c.c
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) bin2c bin2c.exe
|
|
@ -23,9 +23,17 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <unistd.h>
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#if !defined(_MSC_VER)
|
||||||
|
#include <unistd.h>
|
||||||
|
#else
|
||||||
|
#include <io.h>
|
||||||
|
#define snprintf _snprintf
|
||||||
|
#define open _open
|
||||||
|
#define close _close
|
||||||
|
#define read _read
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef O_BINARY
|
#ifndef O_BINARY
|
||||||
#define O_BINARY 0
|
#define O_BINARY 0
|
|
@ -49,8 +49,8 @@ beastpatcher-ppc: beastpatcher.c bootimg.c usb.h main.c libusb-ppc.a
|
||||||
$(CC) -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -framework iokit -framework coreservices -arch ppc $(CFLAGS) -o beastpatcher-ppc beastpatcher.c bootimg.c -I. libusb-ppc.a
|
$(CC) -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -framework iokit -framework coreservices -arch ppc $(CFLAGS) -o beastpatcher-ppc beastpatcher.c bootimg.c -I. libusb-ppc.a
|
||||||
strip beastpatcher-ppc
|
strip beastpatcher-ppc
|
||||||
|
|
||||||
bin2c: ../../../rbutil/sansapatcher/bin2c.c
|
bin2c: ../../../rbutil/tools/bin2c.c
|
||||||
$(NATIVECC) $(CFLAGS) -o bin2c ../../../rbutil/sansapatcher/bin2c.c
|
$(NATIVECC) $(CFLAGS) -o bin2c ../../../rbutil/tools/bin2c.c
|
||||||
|
|
||||||
bootimg.c: bootloader.bin bin2c
|
bootimg.c: bootloader.bin bin2c
|
||||||
./bin2c bootloader.bin bootimg
|
./bin2c bootloader.bin bootimg
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue