From 0ed344821bc3c872100a18289d0384d51af7e970 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 14 Jan 2021 10:57:02 +0100 Subject: Fixing infinite wait on guacamole when calling sem_close --- philo_three/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'philo_three/Makefile') diff --git a/philo_three/Makefile b/philo_three/Makefile index cac5e51..96b4005 100644 --- a/philo_three/Makefile +++ b/philo_three/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/11/24 05:50:15 by cacharle #+# #+# # -# Updated: 2021/01/08 15:03:18 by charles ### ########.fr # +# Updated: 2021/01/14 10:56:09 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -17,7 +17,7 @@ MAKE = make --no-print-directory COMMON_DIR = ../common CC = gcc -CCFLAGS = -std=c99 -O2 -I$(COMMON_DIR)/inc -Wall -Wextra #-Werror +CCFLAGS = -std=c99 -O2 -I$(COMMON_DIR)/inc -Wall -Wextra -Werror LDFLAGS = -lpthread -L$(COMMON_DIR) -lphilocommon NAME = philo_three -- cgit