From 608ae732eccfe50f2727823f9aebe1f32681edfb Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 30 Sep 2020 08:46:00 +0200 Subject: Refactoring philo_two to work with new common lib (not working) --- common/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common/Makefile') diff --git a/common/Makefile b/common/Makefile index 082d66e..62d75c9 100644 --- a/common/Makefile +++ b/common/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/02/09 22:39:08 by cacharle #+# #+# # -# Updated: 2020/02/14 00:49:18 by cacharle ### ########.fr # +# Updated: 2020/09/30 08:22:35 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -14,7 +14,7 @@ LIB = ar rcs RM = rm -rf CC = gcc -CCFLAGS = -Wall -Wextra #-Werror +CCFLAGS = -O2 -Wall -Wextra -Werror NAME = libphilocommon.a @@ -31,8 +31,8 @@ $(NAME): $(OBJ) clean: $(RM) $(OBJ) - -fclean: clean $(RM) $(NAME) re: fclean all + +.PHONY: all clean re -- cgit