diff options
Diffstat (limited to 'c10/ex02/Makefile')
| -rw-r--r-- | c10/ex02/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/c10/ex02/Makefile b/c10/ex02/Makefile index d36a1f8..c1e2c10 100644 --- a/c10/ex02/Makefile +++ b/c10/ex02/Makefile @@ -6,13 +6,13 @@ # By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/07/16 14:50:02 by cacharle #+# #+# # -# Updated: 2019/07/17 13:05:52 by cacharle ### ########.fr # +# Updated: 2019/07/19 06:47:44 by cacharle ### ########.fr # # # # **************************************************************************** # OUT = ft_tail CC = gcc -CCFLAGS = -Wall -Wextra #-Werror +CCFLAGS = -Wall -Wextra -Werror SRC = main.c file.c handle_error.c helper.c OBJ = $(SRC:.c=.o) @@ -33,3 +33,5 @@ clean: fclean: clean rm -f $(OUT) +.PHONY: re +re: fclean all |
