mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 01:14:40 +00:00
12 lines
273 B
Makefile
12 lines
273 B
Makefile
ODIN=../../odin
|
|
|
|
all: rtti_test map_test pow_test
|
|
|
|
rtti_test:
|
|
$(ODIN) run test_rtti.odin -file -vet -strict-style -o:minimal
|
|
|
|
map_test:
|
|
$(ODIN) run test_map.odin -file -vet -strict-style -o:minimal
|
|
|
|
pow_test:
|
|
$(ODIN) run test_pow.odin -file -vet -strict-style -o:minimal
|