-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
28 lines (21 loc) · 1.01 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: atoulous <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2015/11/01 16:51:18 by atoulous #+# #+# #
# Updated: 2015/11/01 22:36:06 by alahlou ### ########.fr #
# #
# **************************************************************************** #
NAME = Colle-2
SRC = *.c
all: $(NAME)
$(NAME):
gcc -o $(NAME) $(SRC)
clean:
rm -f *.o
fclean: clean
rm -f $(NAME)
re: fclean all