blob: dc9c0966a7da5e8adaf3b6b016586c3c725ef693 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 dbparser.h dbparser.c
gcc -g -std=c99 -o $@ -W -Wall $^
clean:
rm -fr elftosb sbtoelf
|