-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
63 lines (50 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: dvan-der <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/12/15 08:23:59 by dvan-der #+# #+# #
# Updated: 2022/01/28 10:21:45 by dvan-der ### ########.fr #
# #
# **************************************************************************** #
# -*- Makefile -*-
NAME := fdf
SRCS := \
main.c \
ft_machine.c \
convert_utils.c \
drawlines.c \
setup_controls.c \
letsdraw.c \
keypress.c \
zoom.c \
rotate.c \
move.c \
flatten.c \
free_copied_map.c \
make_colour.c
MLX := minilibx_macos/libmlx.a
LIBFT := libft/libft.a
ifdef debug
CFLAGS := -Wall -Wextra -fsanitize=address -g
else
CFLAGS := -Wall -Werror -Wextra
endif
all: $(NAME)
$(NAME): $(SRCS) $(LIBFT) $(MLX)
$(CC) $(CFLAGS) $^ -o $@ -framework OpenGL -framework AppKit
$(LIBFT):
$(MAKE) bonus -C libft CFLAGS="$(CFLAGS)"
$(MLX):
$(MAKE) -C minilibx_macos
clean:
$(MAKE) clean -C libft
$(MAKE) clean -C minilibx_macos
rm -f $(OBJS)
fclean: clean
$(MAKE) fclean -C libft
rm -f $(NAME) $^
re: fclean all
.PHONY: all, clean, fclean, re