aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/Makefile
blob: 840174dbb172648b5c3f734d0fb53184cedfaf6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ODIN=../../odin
COMMON=-no-bounds-check -vet -strict-style -define:ODIN_TEST_FANCY=false

all: crypto_bench \
     hash_bench

crypto_bench:
	$(ODIN) test crypto $(COMMON) -o:speed -out:bench_crypto

hash_bench:
	$(ODIN) test hash $(COMMON) -o:speed -out:bench_hash

clean:
	rm bench_*