mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28717 a1c6a512-1295-4272-9138-f99709370657
9 lines
179 B
Makefile
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)
|