diff --git a/Makefile b/Makefile index cb01e43..a23f77c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SpaceMolt Godot Client -# Detect Godot binary -GODOT := $(or $(shell command -v godot 2>/dev/null), \ +# Detect Godot binary (honors $GODOT from environment) +GODOT ?= $(or $(shell command -v godot 2>/dev/null), \ $(wildcard /Applications/Godot.app/Contents/MacOS/Godot), \ $(wildcard bin/godot))