aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-21 23:00:24 +0100
committerMattias Andrée <maandree@kth.se>2022-02-21 23:00:24 +0100
commitd127dd5cab51a869d6f6bb6c2a0860c458d3fecd (patch)
tree87d05afe908afa23afb3ede93ae2c1ec10672194 /Makefile
parentAdd tests (diff)
downloadblakesum-d127dd5cab51a869d6f6bb6c2a0860c458d3fecd.tar.gz
blakesum-d127dd5cab51a869d6f6bb6c2a0860c458d3fecd.tar.bz2
blakesum-d127dd5cab51a869d6f6bb6c2a0860c458d3fecd.tar.xz
Add coverage test
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index be1a6ca..2660901 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
CONFIGFILE = config.mk
include $(CONFIGFILE)
+
BIN =\
bsum\
b2sum
@@ -22,6 +23,11 @@ ALIASES =\
b384sum\
b512sum
+SRC =\
+ $(OBJ:.o=.c)\
+ $(HDR)\
+ test.c
+
# Known answers tests
KAT_FILES =\
kat/blake2b\
@@ -31,6 +37,7 @@ KAT_FILES =\
kat/blake2xb\
kat/blake2xs
+
all: $(BIN) test
$(OBJ): $(HDR)