From 92677800f422723a819884177632dd67bc9a2314 Mon Sep 17 00:00:00 2001 From: Christian C Date: Thu, 6 Mar 2025 16:14:13 -0800 Subject: Toggle AVL Info --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 -- cgit v1.2.1