From 0063bb8641d0dfbfd6b150eea0c31867f8978780 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Mon, 17 Aug 2026 05:24:10 +0100 Subject: [PATCH] Fix missing log in Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3209a58..b54fe84 100644 --- a/Makefile +++ b/Makefile @@ -121,13 +121,17 @@ help: @$(ECHO_E) " $(GREEN)make help$(RESET) Print this help message and exit." full: LIB_SRC = src/wapp.c -full: INCLUDES = common os base prng testing uuid +full: INCLUDES = common os base log prng testing uuid full: install base: LIB_SRC = src/base/wapp_base.c base: INCLUDES = common base base: install +log: LIB_SRC = src/log/wapp_log.c +log: INCLUDES = common os base log +log: install + os: LIB_SRC = src/os/wapp_os.c os: INCLUDES = common os base os: install