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