mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 09:24:33 +00:00
14 lines
285 B
Makefile
14 lines
285 B
Makefile
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_*
|