From adbe9cdb61e5d12299b8872b2ac27a48036bc95d Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 14 Feb 2020 01:42:10 +0100 Subject: WIP: philo_one running a bit --- philo_one/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'philo_one/Makefile') diff --git a/philo_one/Makefile b/philo_one/Makefile index e647316..b043ab5 100644 --- a/philo_one/Makefile +++ b/philo_one/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/11/24 05:50:15 by cacharle #+# #+# # -# Updated: 2020/02/10 00:16:03 by cacharle ### ########.fr # +# Updated: 2020/02/14 00:50:47 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -22,7 +22,9 @@ NAME = philo_one SRC = main.c \ philo.c \ - fork.c + fork.c \ + routine.c + OBJ = $(SRC:.c=.o) all: $(NAME) -- cgit