summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8ee2ef6..1b9668a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
modes = i ii
keylengths = 128 192 256
-tests = $(foreach m,$(modes),$(foreach l,$(keylengths),test/$(m)-$(l)))
+variants = $(foreach m,$(modes),$(foreach l,$(keylengths),$(m)-$(l)))
.PHONY: clean nist test traces
@@ -14,9 +14,9 @@ clean::
test:
status=0; \
- for i in $(tests); \
+ for i in $(variants); \
do \
- make -C $$i $@ || status=1; \
+ make -C test/$$i test || status=1; \
done; \
exit $$status