14 lines
194 B
Makefile
14 lines
194 B
Makefile
run:
|
|
odin run src -out:game.exe -debug -vet
|
|
|
|
build:
|
|
odin build src -out:game.exe -debug -use-separate-modules
|
|
|
|
check:
|
|
odin check src -vet -debug
|
|
|
|
clean:
|
|
rm *.exe
|
|
rm -rf *.dSYM/
|
|
|
|
all: build
|