diff options
author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-08-16 20:39:00 +0000 |
---|---|---|
committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-08-16 20:39:00 +0000 |
commit | e8c71aa40c3287a7c4a1f0e73fe2bb0eb8985441 (patch) | |
tree | 9346bb76341fad344a34b1ee69e1c401ce216266 /rbutil/chinachippatcher/Makefile | |
parent | aaf37656692f57f3b1ce231053c9f2d15d1bea46 (diff) | |
download | rockbox-e8c71aa40c3287a7c4a1f0e73fe2bb0eb8985441.tar.gz rockbox-e8c71aa40c3287a7c4a1f0e73fe2bb0eb8985441.zip |
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
Diffstat (limited to 'rbutil/chinachippatcher/Makefile')
-rw-r--r-- | rbutil/chinachippatcher/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rbutil/chinachippatcher/Makefile b/rbutil/chinachippatcher/Makefile new file mode 100644 index 0000000000..e19052a006 --- /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 |