-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
28 lines (21 loc) · 1.08 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: amaach <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/11/05 11:48:14 by amaach #+# #+# #
# Updated: 2021/11/05 12:00:21 by amaach ### ########.fr #
# #
# **************************************************************************** #
FLAGS = -Werror -Wextra -Wall
NAME = philo
SRC = philo.c outils.c outils_libft.c working.c
all: $(NAME)
$(NAME) : $(SRC)
gcc $(FLAGS) $(SRC) -o $(NAME)
clean:
fclean: clean
rm -f $(NAME)
re: fclean all