diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-01-28 12:28:35 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-01-28 12:28:35 +0000 |
| commit | abf3ea672aeaa928a3bc0ad87f35e9f2f4318895 (patch) | |
| tree | 79d5db82c06e955ebce7833ff62aabcbe1e806aa /tools/Makefile | |
| parent | 35c27b82c3cbe7060c371eb055119f1e8d65546a (diff) | |
| download | rockbox-abf3ea672aeaa928a3bc0ad87f35e9f2f4318895.zip rockbox-abf3ea672aeaa928a3bc0ad87f35e9f2f4318895.tar.gz rockbox-abf3ea672aeaa928a3bc0ad87f35e9f2f4318895.tar.bz2 rockbox-abf3ea672aeaa928a3bc0ad87f35e9f2f4318895.tar.xz | |
New tool to insert the rockbox boot loader into the original firmware (iRiver)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5690 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index 8e82d0f..b98c269 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -6,9 +6,10 @@ # \/ \/ \/ \/ \/ # $Id$ # -CFLAGS := -O -ansi +CFLAGS := -O -ansi -g +LDFLAGS := -g -TARGETS := scramble descramble sh2d bmp2rb convbdf generate_rocklatin +TARGETS := scramble descramble sh2d bmp2rb convbdf generate_rocklatin mkboot all: $(TARGETS) @echo "tools done" @@ -25,6 +26,9 @@ sh2d: sh2d.c bmp2rb: bmp2rb.c $(CC) -DAPPLICATION_NAME=\"$@\" -g $+ -o $@ +mkboot: mkboot.c + $(CC) -g $+ -o $@ + convbdf: convbdf.c $(CC) -g $+ -o $@ |