summaryrefslogtreecommitdiff
path: root/utils/sbtools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/sbtools/Makefile')
-rw-r--r--utils/sbtools/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/utils/sbtools/Makefile b/utils/sbtools/Makefile
index 9427eaf875..e8bb68aadd 100644
--- a/utils/sbtools/Makefile
+++ b/utils/sbtools/Makefile
@@ -1,9 +1,10 @@
1TGT = sbinfo 1all: elftosb sbtoelf
2 2
3all: $(TGT) 3sbtoelf: sbtoelf.c crc.c crypto.h aes128.c sha1.c elf.c sb.h
4 gcc -g -std=c99 -o $@ -W -Wall $^
4 5
5$(TGT): sbinfo.c crc.c crypto.h aes128.c sha1.c elf.c 6elftosb: elftosb.c crc.c crypto.h aes128.c sha1.c elf.c sb.h
6 $(CC) -g -std=c99 -o $(TGT) -W -Wall sbinfo.c aes128.c crc.c sha1.c elf.c 7 gcc -g -std=c99 -o $@ -W -Wall $^
7 8
8clean: 9clean:
9 rm -fr $(TGT) 10 rm -fr elftosb sbtoelf