aboutsummaryrefslogtreecommitdiff
path: root/philo/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-28 13:56:07 +0100
committerDominik Kaiser2025-01-28 13:56:07 +0100
commitc33bbb4f66dbaca2f02b6f32c2d6bdb84be5f115 (patch)
treea33a18e211b4fcae9e6d6dd8257ac56a5ae603f9 /philo/Makefile
parentec7a989cf45440e41d43e7fa2d2ce660fa499933 (diff)
downloadPhilosophers-c33bbb4f66dbaca2f02b6f32c2d6bdb84be5f115.tar.gz
Philosophers-c33bbb4f66dbaca2f02b6f32c2d6bdb84be5f115.zip
Protect simulation_running with mutex
Diffstat (limited to 'philo/Makefile')
-rw-r--r--philo/Makefile2
1 files changed, 1 insertions, 1 deletions
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))