Rockbox Utility: add preliminary support for installing the bootloader (+ dual boot) on ChinaChip targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22356 a1c6a512-1295-4272-9138-f99709370657
diff --git a/rbutil/chinachippatcher/Makefile b/rbutil/chinachippatcher/Makefile
new file mode 100644
index 0000000..e19052a
--- /dev/null
+++ b/rbutil/chinachippatcher/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=-g -Wall -DSTANDALONE
+CC=gcc
+
+all: chinachip
+
+chinachip: chinachip.c
+ $(CC) $(CFLAGS) -o $@ $^
+
+clean:
+ rm -f chinachip