rockbox/utils/sbtools/Makefile

11 lines
247 B
Makefile
Raw Normal View History

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
gcc -g -std=c99 -o $@ -W -Wall $^
clean:
rm -fr elftosb sbtoelf