diff options
| author | Dave Chapman <dave@dchapman.com> | 2005-11-11 17:58:05 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2005-11-11 17:58:05 +0000 |
| commit | 5592e37c632efb5a91685aadc9896a800f5f77af (patch) | |
| tree | 8f157f98fb8abbed955fe3fac9fca0d85ef5f9cd /tools/Makefile | |
| parent | d31a32c5012e4bc0eed9921e1783ed8f59d72e96 (diff) | |
| download | rockbox-5592e37c632efb5a91685aadc9896a800f5f77af.zip rockbox-5592e37c632efb5a91685aadc9896a800f5f77af.tar.gz rockbox-5592e37c632efb5a91685aadc9896a800f5f77af.tar.bz2 rockbox-5592e37c632efb5a91685aadc9896a800f5f77af.tar.xz | |
Import make_fw.c iPod firmware manipulation utility from the ipodlinux project. Renamed it to ipod_fw.c for use in Rockbox. This is an exact copy of the current CVS version from the ipodlinux project.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7813 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index faea49c..1a01f0a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -9,7 +9,7 @@ CFLAGS := -O -ansi -g LDFLAGS := -g -TARGETS := scramble descramble iaudio sh2d bmp2rb rdf2binary convbdf generate_rocklatin mkboot +TARGETS := scramble descramble iaudio sh2d bmp2rb rdf2binary convbdf generate_rocklatin mkboot ipod_fw all: $(TARGETS) @echo "tools done" @@ -34,6 +34,9 @@ rdf2binary: rdf2binary.c mkboot: mkboot.c $(CC) -g $+ -o $@ +ipod_fw: ipod_fw.c + $(CC) -g $+ -o $@ + convbdf: convbdf.c $(CC) -g $+ -o $@ |