Makefile 273 B

123456789101112
  1. ODIN=../../odin
  2. all: rtti_test map_test pow_test
  3. rtti_test:
  4. $(ODIN) run test_rtti.odin -file -vet -strict-style -o:minimal
  5. map_test:
  6. $(ODIN) run test_map.odin -file -vet -strict-style -o:minimal
  7. pow_test:
  8. $(ODIN) run test_pow.odin -file -vet -strict-style -o:minimal