From a5dff3123ce3bcb0d20b72f0797e6f2c9e3eb99d Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Tue, 4 Dec 2018 09:57:21 +0100 Subject: Réorganisation des tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3