mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
63331ef731
This reverts commita40a53b104, reversing changes made to5422a3b17e.
20 lines
233 B
Makefile
20 lines
233 B
Makefile
all: debug demo
|
|
|
|
demo:
|
|
./odin run examples/demo/demo.odin
|
|
|
|
report:
|
|
./odin report
|
|
|
|
debug:
|
|
./build_odin.sh debug
|
|
|
|
release:
|
|
./build_odin.sh release
|
|
|
|
release_native:
|
|
./build_odin.sh release-native
|
|
|
|
nightly:
|
|
./build_odin.sh nightly
|