Allow sub-folders in lib directory
authorNathael Pajani <nathael.pajani@ed3l.fr>
Thu, 17 Sep 2015 18:45:36 +0000 (20:45 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:04 +0000 (17:03 +0100)
Makefile

index d7f5d61..f261940 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,7 @@ TARGET_INCLUDES = $(TARGET_DIR)/
 OBJDIR = objs
 
 SRC = $(wildcard */*.c)
+SRC += $(wildcard lib/*/*.c)
 OBJS = ${SRC:%.c=${OBJDIR}/%.o}
 DEPS = ${OBJS:%.o=$(OBJDIR)/%.d}