-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (22 loc) · 1.09 KB
/
Copy pathMakefile
File metadata and controls
30 lines (22 loc) · 1.09 KB
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
29
30
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: cosney <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/04/14 09:18:58 by cosney #+# #+# #
# Updated: 2020/04/16 18:20:33 by cosney ### ########.fr #
# #
# **************************************************************************** #
NAME = mr_cucumberg
FILES = srcs/*.c
INCLUDES = includes/
all: $(NAME)
$(NAME):
@gcc -Wall -Wextra -Werror $(FILES) -I$(INCLUDES) -o $(NAME)
clean:
@/bin/rm -f *.o
fclean: clean
@/bin/rm -f $(NAME)
re: fclean all