blob: 00e46197b10aa564a9387019d2b35a7e5ebedb6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|