aboutsummaryrefslogtreecommitdiff
path: root/philo/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-17 12:40:20 +0100
committerDominik Kaiser2025-01-17 12:40:20 +0100
commit0d910cd1b5e3b40ef91c4ee5334305530015a181 (patch)
tree413c49ffb1572b593b3b921779e8c965f29b4764 /philo/Makefile
parent987211580c3f92cf33416edf8d71e22daaf9e65e (diff)
downloadPhilosophers-0d910cd1b5e3b40ef91c4ee5334305530015a181.tar.gz
Philosophers-0d910cd1b5e3b40ef91c4ee5334305530015a181.zip
Add loading data from args
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 b3af4fb..1841707 100644
--- a/philo/Makefile
+++ b/philo/Makefile
@@ -9,7 +9,7 @@ CFLAGS = -Wall -Wextra -Werror
HEADERS = -Iinclude
VPATH := src
-SRC := main.c
+SRC := main.c ft_utils.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))