aboutsummaryrefslogtreecommitdiff
path: root/philo_one/Makefile
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-30 09:52:21 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-30 09:52:21 +0200
commit94d33564ee659d2fd0b084a4b4046e7b69ee0d9b (patch)
tree26557e562ef0629f9023c467be04fcecf3ddb6f4 /philo_one/Makefile
parent608ae732eccfe50f2727823f9aebe1f32681edfb (diff)
downloadphilosophers-94d33564ee659d2fd0b084a4b4046e7b69ee0d9b.tar.gz
philosophers-94d33564ee659d2fd0b084a4b4046e7b69ee0d9b.tar.bz2
philosophers-94d33564ee659d2fd0b084a4b4046e7b69ee0d9b.zip
Refactoring philo_one, removing mutex_all_alive and t_routine_args bloat
Diffstat (limited to 'philo_one/Makefile')
-rw-r--r--philo_one/Makefile4
1 files changed, 2 insertions, 2 deletions
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 <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# 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