diff options
| author | Marcoen Hirschberg <marcoen@gmail.com> | 2006-08-30 23:47:09 +0000 |
|---|---|---|
| committer | Marcoen Hirschberg <marcoen@gmail.com> | 2006-08-30 23:47:09 +0000 |
| commit | ae8d47574d01e1aae45b905d17c912e235230f9b (patch) | |
| tree | a674afd45830563aa84f897a684d1dfed3c77640 /tools/Makefile | |
| parent | 530f31dbe9fe404d41fd21867c8ed9cec1addd96 (diff) | |
| download | rockbox-ae8d47574d01e1aae45b905d17c912e235230f9b.zip rockbox-ae8d47574d01e1aae45b905d17c912e235230f9b.tar.gz rockbox-ae8d47574d01e1aae45b905d17c912e235230f9b.tar.bz2 rockbox-ae8d47574d01e1aae45b905d17c912e235230f9b.tar.xz | |
add Gigabeat support to the scramble tools
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10817 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/Makefile b/tools/Makefile index 53b1200..26cdcab 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -10,17 +10,18 @@ CFLAGS := -O -ansi -g LDFLAGS := -g CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \ - generate_rocklatin mkboot ipod_fw codepages uclpack mi4 + generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat all: @echo "Run make in your build directory!" -scramble: scramble.o iriver.o mi4.o -descramble: descramble.o iriver.o +scramble: scramble.o iriver.o mi4.o gigabeat.o +descramble: descramble.o iriver.o gigabeat.o -scramble.o: scramble.c iriver.h -descramble.o: descramble.c iriver.h +scramble.o: scramble.c iriver.h mi4.h gigabeat.h +descramble.o: descramble.c iriver.h gigabeat.h iriver.o: iriver.c iriver.h +gigabeat.o: gigabeat.c gigabeat.h mi4.o: mi4.c mi4.h sh2d: sh2d.c |