Update Makefiles and Template

This commit is contained in:
Jaby
2023-10-09 20:52:19 +02:00
committed by Jaby
parent dbf3e5d1de
commit 9cfa073017
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))