-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
33 lines (23 loc) · 1.11 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: edpaulin <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/02/05 12:01:33 by edpaulin #+# #+# #
# Updated: 2022/02/05 12:13:45 by edpaulin ### ########.fr #
# #
# **************************************************************************** #
NAME = rush_exercise_number
SRC = rush_exercise_number.c
CC = gcc
CFLAGS = -Wall -Wextra -Werror
all: ${NAME}
${NAME}:
${CC} ${CFLAGS} ${SRC} -o ${NAME}
clean:
rm -rf ${NAME}
fclean: clean
re: fclean all
.PHONY: all clean fclean re