diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-04-09 11:53:28 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-04-09 11:53:28 +0000 |
| commit | e810721e72d0d70d87b02603299d50809b794470 (patch) | |
| tree | 19cc6a608e064abd6361493bb5cfa7589c531bba /tools/Makefile | |
| parent | 5a3651bf940001693153ab52a67c9cd87e7d41c7 (diff) | |
| download | rockbox-e810721e72d0d70d87b02603299d50809b794470.zip rockbox-e810721e72d0d70d87b02603299d50809b794470.tar.gz rockbox-e810721e72d0d70d87b02603299d50809b794470.tar.bz2 rockbox-e810721e72d0d70d87b02603299d50809b794470.tar.xz | |
First commit:
* add Creative (ZVM, 60GB, ZV, ZVW, ZENV) support to scramble
* update configure to the correct values
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17042 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/Makefile b/tools/Makefile index 94378d8..e43bf98 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -13,16 +13,18 @@ LDFLAGS := -g CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \ generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat database \ - lngdump telechips gigabeats mktccboot mknkboot rbspeexenc + lngdump telechips gigabeats creative hmac-sha1 mktccboot mknkboot rbspeexenc all: @echo "Run make in your build directory!" -scramble: scramble.o iriver.o mi4.o gigabeat.o gigabeats.o telechips.o iaudio_bl_flash.o +scramble: scramble.o iriver.o mi4.o gigabeat.o gigabeats.o telechips.o iaudio_bl_flash.o creative.o hmac-sha1.o descramble: descramble.o iriver.o gigabeat.o +scramble.o: scramble.c iriver.h mi4.h gigabeat.h telechips.h iaudio_bl_flash.h creative.h -scramble.o: scramble.c iriver.h mi4.h gigabeat.h telechips.h iaudio_bl_flash.h descramble.o: descramble.c iriver.h gigabeat.h +creative.o: creative.c creative.h +hmac-sha1.o: hmac-sha1.c hmac-sha1.h iriver.o: iriver.c iriver.h gigabeat.o: gigabeat.c gigabeat.h gigabeats.o: gigabeats.c gigabeats.h |