diff options
author | Christian C <cc@localhost> | 2025-03-06 16:14:13 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-06 16:14:13 -0800 |
commit | 92677800f422723a819884177632dd67bc9a2314 (patch) | |
tree | af1466afe2c60687577d4f6b7e04be22e0be7236 | |
parent | 05c53bb909ccaa8d8aeefc62a0850664c6075cce (diff) |
Toggle AVL Info
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 |