From 1b5ff475e8506d4635c246ebf6511268cf97e329 Mon Sep 17 00:00:00 2001 From: "Semere M. Mebrahtom" Date: Mon, 18 May 2026 23:46:09 +0200 Subject: [PATCH] removed wildcard from the Makefile --- Makefile | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 50b014b..3a89722 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,20 @@ -NAME = codexion +NAME := codexion -SRCS = $(wildcard coders/*.c) -INCLUDES = coders/codexion.h +SRCS := coders/coder.c\ + coders/heap.c\ + coders/initialization.c\ + coders/main.c\ + coders/monitor.c\ + coders/schedulers.c\ + coders/utils.c + +INCLUDES := ./coders OBJS = $(SRCS:.c=.o) CC = cc # CFLAGS = -Wall -Wextra -Werror -pthread -g -fsanitize=thread -CFLAGS = -Wall -Wextra -Werror -pthread +CFLAGS = -Wall -Wextra -Werror -pthread -I$(INCLUDES) ARGS = 6 900 200 200 200 10 60 fifo