aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian C <cc@localhost>2025-03-06 16:14:13 -0800
committerChristian C <cc@localhost>2025-03-06 16:14:13 -0800
commit92677800f422723a819884177632dd67bc9a2314 (patch)
treeaf1466afe2c60687577d4f6b7e04be22e0be7236 /Makefile
parent05c53bb909ccaa8d8aeefc62a0850664c6075cce (diff)
Toggle AVL Info
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8424d4b..74e89e2 100644
--- a/Makefile
+++ b/Makefile
@@ -13,11 +13,17 @@ OBJ_DIRS=$(subst $(SRC_DIR),$(OBJ_DIR),$(OBJ_DIRS_sub))
# Include raylib if we want a visual experience
ifdef RAYLIB
-$(info "Visual Experience Selected")
+$(info Visual Experience Selected)
PKGS+=raylib
DEFINES+=-DVISUAL
endif
+# Dump AVL tree info?
+ifdef AVL_INFO
+$(info Including AVL Dump)
+DEFINES+=-DAVL_INFO
+endif
+
ifeq ($(shell uname -s),Linux)
PKGCONF=pkgconf
endif