aboutsummaryrefslogtreecommitdiff
path: root/philo_two/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'philo_two/Makefile')
-rw-r--r--philo_two/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/philo_two/Makefile b/philo_two/Makefile
index 33ae4ea..3135bb4 100644
--- a/philo_two/Makefile
+++ b/philo_two/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/11/24 05:50:15 by cacharle #+# #+# #
-# Updated: 2020/10/05 16:21:27 by cacharle ### ########.fr #
+# Updated: 2020/10/24 13:02:05 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 -Wall -Wextra -I$(COMMONDIR) -Werror
LDFLAGS = -lpthread -L$(COMMONDIR) -lphilocommon
NAME = philo_two
@@ -33,7 +33,7 @@ prebuild:
@mkdir -p $(OBJDIR)
$(NAME): common_all $(OBJ)
- $(CC) $(LDFLAGS) -o $@ $(OBJ)
+ $(CC) -o $@ $(OBJ) $(LDFLAGS)
$(OBJDIR)/%.o: $(SRCDIR)/%.c
$(CC) $(CCFLAGS) -c -o $@ $<