Clean up MakeFiles

This commit is contained in:
2024-02-09 15:41:56 -05:00
parent 72b6d6ad43
commit 8c1d806f45
12 changed files with 14 additions and 15 deletions

View File

@@ -0,0 +1,2 @@
#Add the JabyEngine tools to path
export PATH := $(JABY_ENGINE_DIR)/bin/:$(PATH)

View File

@@ -0,0 +1,3 @@
rebuild:
$(MAKE) clean
$(MAKE) all

View File

@@ -0,0 +1,2 @@
#Macro to expand files recursively: parameters $1 - directory, $2 - extension, i.e. cpp
rwildcard = $(wildcard $(addprefix $1/*.,$2)) $(foreach d,$(wildcard $1/*),$(call rwildcard,$d,$2))