diff options
| -rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2,20 +2,20 @@ modes = i ii keylengths = 128 192 256 variants = $(foreach m,$(modes),$(foreach l,$(keylengths),$(m)-$(l))) +test_variants = $(foreach v,$(variants),test/$(v)) -.PHONY: all clean nist test traces +.PHONY: all clean nist test $(test_variants) traces all: test clean: - rm -r results crypto_aead -test: - for i in $(variants); \ - do \ - make -C test/$$i test || exit 1; \ - done +$(test_variants): + make -C $@ test + +test: $(test_variants) traces: traces-ae traces-tbc |
