From 94d33564ee659d2fd0b084a4b4046e7b69ee0d9b Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 30 Sep 2020 09:52:21 +0200 Subject: Refactoring philo_one, removing mutex_all_alive and t_routine_args bloat --- philo_one/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'philo_one/Makefile') diff --git a/philo_one/Makefile b/philo_one/Makefile index ea58d9e..4ec2e75 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/09/30 08:00:20 by cacharle ### ########.fr # +# Updated: 2020/09/30 09:35:22 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -16,7 +16,7 @@ MAKE = make --no-print-directory COMMONDIR = ../common CC = gcc -CCFLAGS = -I$(COMMONDIR) -Wall -Wextra #-Werror +CCFLAGS = -g -I$(COMMONDIR) -Wall -Wextra #-Werror LDFLAGS = -lpthread -L$(COMMONDIR) -lphilocommon NAME = philo_one -- cgit