Update Makefiles and Template

This commit is contained in:
Jaby
2023-10-09 20:52:19 +02:00
parent c78f103ca7
commit 5cc8007fc5
12 changed files with 12 additions and 11 deletions

2
mkfile/Wildcard.mk Normal file
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))