mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
890fe07c6e
This should tidy up the CI output logs a bit.
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_*
|