aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Cunningham <cc@local.lan>2025-03-06 16:08:27 -0800
committerChristian Cunningham <cc@local.lan>2025-03-06 16:08:27 -0800
commite23c9fa1c680eac8076a888ad3553147108024f6 (patch)
treecb61601a91b3f52f9afaf85f32ea76cf2d32fd45 /Makefile
parent7890d2063028457dad0b586caba7b0fa02efea8d (diff)
Fix overloaded variable
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 26be076..2570a08 100644
--- a/Makefile
+++ b/Makefile
@@ -12,8 +12,8 @@ OBJ_DIRS_sub=$(shell find $(SRC_DIR) -type d)
OBJ_DIRS=$(subst $(SRC_DIR),$(OBJ_DIR),$(OBJ_DIRS_sub))
# Include raylib if we want a visual experience
-VISUAL?=
-ifdef VISUAL
+ifdef RAYLIB
+$(info "Visual Experience Selected")
PKGS+=raylib
DEFINES+=-DVISUAL
endif