-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
116 lines (107 loc) · 3.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# **************************************************************************** #
# #
# :::::::: #
# Makefile :+: :+: #
# +:+ #
# By: jsaariko <jsaariko@student.codam.nl> +#+ #
# +#+ #
# Created: 2019/12/03 20:38:39 by jsaariko #+# #+# #
# Updated: 2020/03/14 12:27:58 by jsaariko ######## odam.nl #
# #
# **************************************************************************** #
NAME = libftprintf.a
LIBFT_DIR = libft/
C_FILES = ft_printf.c \
gen_arg_str.c \
store_conv.c \
gen_arg_list.c \
parse.c \
transition_code.c \
base_state.c \
dash_state.c \
zero_state.c \
num_state.c \
ast_state.c \
precision_state.c \
error_state.c \
print_result.c \
execute.c \
convert_char.c \
convert_int.c \
convert_hex.c \
convert_str.c \
convert_ptr.c \
convert_float.c \
format_buffer.c \
clear_list.c
LIBFT_C = $(LIBFT_DIR)ft_putchar_fd \
$(LIBFT_DIR)ft_putstr_fd \
$(LIBFT_DIR)ft_putendl_fd \
$(LIBFT_DIR)ft_putnbr_fd \
$(LIBFT_DIR)ft_isalpha \
$(LIBFT_DIR)ft_isdigit \
$(LIBFT_DIR)ft_isalnum \
$(LIBFT_DIR)ft_isascii \
$(LIBFT_DIR)ft_isprint \
$(LIBFT_DIR)ft_toupper \
$(LIBFT_DIR)ft_tolower \
$(LIBFT_DIR)ft_strlen \
$(LIBFT_DIR)ft_memset \
$(LIBFT_DIR)ft_bzero \
$(LIBFT_DIR)ft_memcpy \
$(LIBFT_DIR)ft_memccpy \
$(LIBFT_DIR)ft_memmove \
$(LIBFT_DIR)ft_memchr \
$(LIBFT_DIR)ft_memcmp \
$(LIBFT_DIR)ft_strlcpy \
$(LIBFT_DIR)ft_strlcat \
$(LIBFT_DIR)ft_strchr \
$(LIBFT_DIR)ft_strrchr \
$(LIBFT_DIR)ft_strnstr \
$(LIBFT_DIR)ft_strncmp \
$(LIBFT_DIR)ft_atoi \
$(LIBFT_DIR)ft_calloc \
$(LIBFT_DIR)ft_substr \
$(LIBFT_DIR)ft_strjoin \
$(LIBFT_DIR)ft_strtrim \
$(LIBFT_DIR)ft_strmapi \
$(LIBFT_DIR)ft_itoa \
$(LIBFT_DIR)ft_split \
$(LIBFT_DIR)ft_strdup \
$(LIBFT_DIR)ft_numlen \
$(LIBFT_DIR)ft_realloc \
$(LIBFT_DIR)ft_recalloc \
$(LIBFT_DIR)ft_strchrset \
$(LIBFT_DIR)ft_strdupchr \
$(LIBFT_DIR)ft_strjoinchar \
$(LIBFT_DIR)ft_numlen_base \
$(LIBFT_DIR)ft_numtochar_base \
$(LIBFT_DIR)ft_lltoa_base \
$(LIBFT_DIR)ft_ulltoa_base \
$(LIBFT_DIR)ft_toupperstr \
$(LIBFT_DIR)ft_tolowerstr \
$(LIBFT_DIR)ft_strjoinindex \
$(LIBFT_DIR)ft_strmatch \
$(LIBFT_DIR)ft_ftoa \
$(LIBFT_DIR)ft_ftoa_utils
LIBFT_FILES = $(LIBFT_C:%=%.o)
O_FILES = $(C_FILES:%.c=%.o)
FLAGS = -Wall -Wextra -Werror
all: $(NAME)
$(NAME): $(O_FILES)
@ar -rc $(NAME) $(LIBFT_FILES) $(O_FILES)
@ranlib $(NAME)
@echo "libftprintf.a compiled"
$(O_FILES):
@make -C $(LIBFT_DIR) $(LIBFT_OBJECTS)
@gcc $(FLAGS) -c $(C_FILES)
@echo "Printf object files compiled"
clean:
@rm -f $(O_FILES)
@make -C $(LIBFT_DIR) clean
@echo "Cleared printf object files"
fclean: clean
@make -C $(LIBFT_DIR) fclean
@rm -f $(NAME)
@echo "Printf all clean!"
re: fclean all