From 4a82b7819af49cc735d32cb166b1d8fd5abda21c Mon Sep 17 00:00:00 2001 From: Adam Joly Date: Tue, 13 Aug 2024 10:44:20 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix:=20removed?= =?UTF-8?q?=20wildcard=20from=20makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- philo/Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/philo/Makefile b/philo/Makefile index a2a9c1e..899ecf6 100644 --- a/philo/Makefile +++ b/philo/Makefile @@ -6,7 +6,7 @@ # By: adjoly +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2024/07/07 15:08:52 by adjoly #+# #+# # -# Updated: 2024/07/16 20:03:49 by adjoly ### ########.fr # +# Updated: 2024/08/13 10:42:58 by adjoly ### ########.fr # # # # **************************************************************************** # @@ -18,7 +18,16 @@ CC = cc OBJSDIR = obj/ -SRC = $(shell find . -name '*.c') +SRC = ./philo.c \ + ./usleep.c \ + ./monitor.c \ + ./eat.c \ + ./parsing.c \ + ./log.c \ + ./util.c \ + ./philo_routine.c \ + ./run_philo.c \ + ./parsing2.c I_DIR = ./