From e499bda7a1c074263ffca0d94250d1e7b660a032 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 11 Dec 2025 23:29:34 +0100 Subject: [PATCH] build: adding the CFLAGS to compile on my server - The -Wno-unused-result is not mandatory at 42 and is too long to catch each time --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ed90f1a..1999da5 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/12/11 22:56:13 by rparodi ### ########.fr # +# Updated: 2025/12/11 23:18:29 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -25,6 +25,7 @@ ASFLAGS += -g -F dwarf CC ?= clang RM = rm -rf CFLAGS = -Werror -Wextra -Wall +CFLAGS += -Wno-unused-result TEST_FILE = test/main.c INC_DIR = includes LDFLAGS = -L./build/ -lasm -no-pie