-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
21 lines (20 loc) · 1.02 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: ajordan- <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/06/30 13:38:26 by ajordan- #+# #+# #
# Updated: 2021/06/30 13:41:42 by ajordan- ### ########.fr #
# #
# **************************************************************************** #
NAME = BSQ
SRC = main.c
$(NAME):
@gcc -Wall -Werror -Wextra -o $(NAME) $(SRC)
clean:
@/bin/rm -f *.o
fclean: clean
@/bin/rm -f $(NAME)
re: fclean all