From c33bbb4f66dbaca2f02b6f32c2d6bdb84be5f115 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Tue, 28 Jan 2025 13:56:07 +0100 Subject: Protect simulation_running with mutex --- philo/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'philo/Makefile') diff --git a/philo/Makefile b/philo/Makefile index 9cd7e26..0f33d41 100644 --- a/philo/Makefile +++ b/philo/Makefile @@ -9,7 +9,7 @@ CFLAGS = -Wall -Wextra -Werror HEADERS = -Iinclude VPATH := src -SRC := main.c init.c ft_utils.c simulation.c philo_eat.c +SRC := main.c init.c ft_utils.c simulation.c philo_eat.c sim_controls.c OBJ_DIR := _obj OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o)) -- cgit v1.2.3