rockbox/utils/sbinfo/Makefile
Amaury Pouly 1583b1cd53 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
2010-12-01 16:17:11 +00:00

9 lines
179 B
Makefile

TGT = sbinfo
all: $(TGT)
$(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)