commit cd0da59b7dec9892d6c1c9777e22dbc3c2ebdf56 parent ea194c8bcc25e90fef15c196ebc2fd8b57d2a159 Author: Robin Bron <robin@finwo.nl> Date: Sat, 25 Feb 2023 23:55:07 +0100 Allow compilation of nested src directories Diffstat:
| M | Makefile | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -1,6 +1,8 @@ # Initial config LIBS= -SRC=$(wildcard src/*.c) +SRC:= +SRC+=$(wildcard src/*.c) +SRC+=$(wildcard src/*/*.c) override CFLAGS?=-Wall -g