From 2baa67fd7ad31fe53ab21d257a104478e787fb62 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 24 Oct 2020 13:06:05 +0200 Subject: Replacing mutex stdout by semaphore in philo two, Compilation on Linux --- philo_one/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'philo_one') diff --git a/philo_one/Makefile b/philo_one/Makefile index 391fa4f..9fb6a6a 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 10:20:59 by cacharle ### ########.fr # +# Updated: 2020/10/24 13:02:59 by charles ### ########.fr # # # # **************************************************************************** # @@ -16,7 +16,7 @@ MAKE = make --no-print-directory COMMONDIR = ../common CC = gcc -CCFLAGS = -g -I$(COMMONDIR) -Wall -Wextra #-Werror +CCFLAGS = -g -I$(COMMONDIR) -Wall -Wextra -Werror LDFLAGS = -lpthread -L$(COMMONDIR) -lphilocommon NAME = philo_one -- cgit