diff options
author | Amaury Pouly <pamaury@rockbox.org> | 2011-09-15 16:10:31 +0000 |
---|---|---|
committer | Amaury Pouly <pamaury@rockbox.org> | 2011-09-15 16:10:31 +0000 |
commit | 9d7df9ae4d829204856a19fc14fae166631389bf (patch) | |
tree | b82178fd2b0c7b4f75735599d99ce7fabbd53261 /utils/sbtools/Makefile | |
parent | 64b46723591adc8b563a692c0e91681d2fcd4ad4 (diff) |
sbtools: move the db parse to its own file and improve error messages
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30557 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/sbtools/Makefile')
-rw-r--r-- | utils/sbtools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/sbtools/Makefile b/utils/sbtools/Makefile index e8bb68aadd..dc9c0966a7 100644 --- a/utils/sbtools/Makefile +++ b/utils/sbtools/Makefile @@ -3,7 +3,7 @@ all: elftosb sbtoelf sbtoelf: sbtoelf.c crc.c crypto.h aes128.c sha1.c elf.c sb.h gcc -g -std=c99 -o $@ -W -Wall $^ -elftosb: elftosb.c crc.c crypto.h aes128.c sha1.c elf.c sb.h +elftosb: elftosb.c crc.c crypto.h aes128.c sha1.c elf.c sb.h dbparser.h dbparser.c gcc -g -std=c99 -o $@ -W -Wall $^ clean: |