@@ -0,0 +1,16 @@
APP_NAME := my_app
SRC := ./src
.PHONY: all dev release clean
all:
odin run $(SRC) -define:DEV=true
dev:
odin build $(SRC) -out:$(APP_NAME) -define:DEV=true
release:
odin build $(SRC) -out:$(APP_NAME) -o:speed
clean:
rm -f $(APP_NAME)
The note is not visible to the blocked user.