From fc997cd04701f26ab4ecdf5c4952e0723d4a95ff Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 18 Nov 2022 16:30:55 +0100 Subject: [PATCH] added missing lib into SRC_LOGGER's path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 67ab1e8..891d45c 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ CFLAGS=-Wall -Wextra -Werror -Wcomment -Wformat -Wformat-security -Wmain -Wnonnu # Source Code SRC_CORE=./src/core/lib/*.c SRC_CORE_APP=./src/core/app/*.c -SRC_LOGGER=./src/logger/*.c +SRC_LOGGER=./src/logger/lib/*.c INCLUDE_DIR=./include INCLUDE_CORE=$(INCLUDE_DIR)/*.h