sbinfo: first try at creating an elf file out of the .sb mess

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28717 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Amaury Pouly 2010-12-01 16:17:11 +00:00
parent 71ad3679dc
commit 1583b1cd53
4 changed files with 361 additions and 4 deletions

View file

@ -2,8 +2,8 @@ TGT = sbinfo
all: $(TGT)
$(TGT): sbinfo.c crc.c crypto.h aes128.c sha1.c
$(CC) -g -std=c99 -o $(TGT) -W -Wall sbinfo.c aes128.c crc.c sha1.c
$(TGT): sbinfo.c crc.c crypto.h aes128.c sha1.c elf.c
$(CC) -g -std=c99 -o $(TGT) -W -Wall sbinfo.c aes128.c crc.c sha1.c elf.c
clean:
rm -fr $(TGT)