From b9d93edf40f228fcc6e18e9e6d0a1c5db498c004 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 1 Jan 2021 14:46:13 +0100 Subject: Added meal counter to philo_two (still segfault 10% of the time) --- philo_two/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'philo_two/Makefile') diff --git a/philo_two/Makefile b/philo_two/Makefile index 3135bb4..6ee7cca 100644 --- a/philo_two/Makefile +++ b/philo_two/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/11/24 05:50:15 by cacharle #+# #+# # -# Updated: 2020/10/24 13:02:05 by charles ### ########.fr # +# Updated: 2021/01/01 14:45:16 by charles ### ########.fr # # # # **************************************************************************** # @@ -16,7 +16,7 @@ MAKE = make --no-print-directory COMMONDIR = ../common CC = gcc -CCFLAGS = -g -Wall -Wextra -I$(COMMONDIR) -Werror +CCFLAGS = -g -I$(COMMONDIR) -std=c99 -Wall -Wextra -Werror LDFLAGS = -lpthread -L$(COMMONDIR) -lphilocommon NAME = philo_two -- cgit