-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
41 lines (34 loc) · 1.29 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
37
38
39
40
41
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: anruland <anruland@student.42wolfsburg. +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/06/15 10:35:41 by anruland #+# #+# #
# Updated: 2022/06/15 10:46:34 by anruland ### ########.fr #
# #
# **************************************************************************** #
NAME = philotester
CC = gcc
CFLAGS = -pthread -Wall -Wextra -Werror -ggdb3
SRC = main.c \
get_next_line.c \
get_next_line_utils.c \
# destruct.c \
# error.c \
# init.c \
# ft_atoi.c \
# ft_itoa.c \
# ft_bzero.c \
# ft_strlen.c \
# ft_printerror.c \
# ph_helper1.c
all: $(NAME)
$(NAME):
$(CC) $(CFLAGS) $(SRC) -o $(NAME)
clean:
rm -f ./*.o
fclean: clean
rm -f ./$(NAME)
re: fclean all