-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
36 lines (28 loc) · 1.21 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
29
30
31
32
33
34
35
36
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: mmaria-d <[email protected] +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/03/11 21:17:52 by mmaria-d #+# #+# #
# Updated: 2024/03/12 10:12:38 by mmaria-d ### ########.fr #
# #
# **************************************************************************** #
NAME = cub3D
all: $(NAME)
$(NAME):
make -C ./mandatory
clean:
make clean -C ./mandatory
make clean -C ./bonus
fclean: clean
make fclean -C ./mandatory
make fclean -C ./bonus
bonus:
make -C ./bonus
re: fclean
make all
git: fclean
git add * && git commit -m "commiting" && git push
.PHONY: all clean fclean re bonus git