diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
