diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2007-08-10 22:06:58 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2007-08-10 22:06:58 +0000 |
| commit | 39dfd68e2f6f68ae0cff11323f6a33784540d26e (patch) | |
| tree | 127ec655a519a119a5c5482207f018d75835e5fb | |
| parent | 3dabc565d995a34e0727a7c9980bbac6cc0d6e7b (diff) | |
| download | rockbox-39dfd68e2f6f68ae0cff11323f6a33784540d26e.zip rockbox-39dfd68e2f6f68ae0cff11323f6a33784540d26e.tar.gz rockbox-39dfd68e2f6f68ae0cff11323f6a33784540d26e.tar.bz2 rockbox-39dfd68e2f6f68ae0cff11323f6a33784540d26e.tar.xz | |
support to build the lngdump tool
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14273 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | tools/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index ac9fbac..b7f445e 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -10,7 +10,8 @@ CFLAGS := -O -ansi -g LDFLAGS := -g CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \ - generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat database + generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat database \ + lngdump all: @echo "Run make in your build directory!" @@ -35,6 +36,9 @@ rdf2binary: rdf2binary.c mkboot: mkboot.c $(SILENT)$(CC) -g $+ -o $@ +lngdump: lngdump.c + $(SILENT)$(CC) -g $+ -o $@ + ipod_fw: ipod_fw.c $(SILENT)$(CC) -g $+ -o $@ |