18 lines
380 B
Makefile
18 lines
380 B
Makefile
.PHONY: test test-hash256 test-xof128 test-cxof128 test-aead128
|
|
|
|
CRYPTOL ?= cryptol
|
|
|
|
test: test-hash256 test-xof128 test-cxof128 test-aead128
|
|
|
|
test-hash256:
|
|
$(CRYPTOL) -c :exhaust TestAsconHash256.cry
|
|
|
|
test-xof128:
|
|
$(CRYPTOL) -c :exhaust TestAsconXOF128.cry
|
|
|
|
test-cxof128:
|
|
$(CRYPTOL) -c :exhaust TestAsconCXOF128.cry
|
|
|
|
test-aead128:
|
|
$(CRYPTOL) -c :exhaust TestAsconAEAD128.cry
|