-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
180 lines (166 loc) · 4.9 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
NAME = libft.a
FLAGS = -Wall -Wextra -Werror
fPIC =
SRC_DIR = srcs
OBJ_DIR = objs
INC = includes
SRC = $(SRC_DIR)/ft_array_join.c \
$(SRC_DIR)/ft_array_len.c \
$(SRC_DIR)/ft_array_strlen.c \
$(SRC_DIR)/ft_atoi.c \
$(SRC_DIR)/ft_bzero.c \
$(SRC_DIR)/ft_intlen.c \
$(SRC_DIR)/ft_isalnum.c \
$(SRC_DIR)/ft_isalpha.c \
$(SRC_DIR)/ft_isascii.c \
$(SRC_DIR)/ft_isblankspace.c \
$(SRC_DIR)/ft_isdigit.c \
$(SRC_DIR)/ft_isechapcarac.c \
$(SRC_DIR)/ft_islowercase.c \
$(SRC_DIR)/ft_isnumber.c \
$(SRC_DIR)/ft_isprint.c \
$(SRC_DIR)/ft_isuppercase.c \
$(SRC_DIR)/ft_isxdigit.c \
$(SRC_DIR)/ft_itoa.c \
$(SRC_DIR)/ft_lstadd.c \
$(SRC_DIR)/ft_lstdel.c \
$(SRC_DIR)/ft_lstdelone.c \
$(SRC_DIR)/ft_lstiter.c \
$(SRC_DIR)/ft_lstmap.c \
$(SRC_DIR)/ft_lstnew.c \
$(SRC_DIR)/ft_memalloc.c \
$(SRC_DIR)/ft_memccpy.c \
$(SRC_DIR)/ft_memchr.c \
$(SRC_DIR)/ft_memcmp.c \
$(SRC_DIR)/ft_memcpy.c \
$(SRC_DIR)/ft_memdel.c \
$(SRC_DIR)/ft_memmove.c \
$(SRC_DIR)/ft_memrchr.c \
$(SRC_DIR)/ft_memset.c \
$(SRC_DIR)/ft_putchar.c \
$(SRC_DIR)/ft_putchar_err.c \
$(SRC_DIR)/ft_putchar_fd.c \
$(SRC_DIR)/ft_putchar_info.c \
$(SRC_DIR)/ft_putchar_succ.c \
$(SRC_DIR)/ft_putendl.c \
$(SRC_DIR)/ft_putendl_err.c \
$(SRC_DIR)/ft_putendl_fd.c \
$(SRC_DIR)/ft_putendl_info.c \
$(SRC_DIR)/ft_putendl_succ.c \
$(SRC_DIR)/ft_putnbr.c \
$(SRC_DIR)/ft_putnbr_err.c \
$(SRC_DIR)/ft_putnbr_fd.c \
$(SRC_DIR)/ft_putnbr_info.c \
$(SRC_DIR)/ft_putnbr_succ.c \
$(SRC_DIR)/ft_putnbrendl.c \
$(SRC_DIR)/ft_putnbrendl_err.c \
$(SRC_DIR)/ft_putnbrendl_fd.c \
$(SRC_DIR)/ft_putnbrendl_info.c \
$(SRC_DIR)/ft_putnbrendl_succ.c \
$(SRC_DIR)/ft_putnchar.c \
$(SRC_DIR)/ft_putnchar_err.c \
$(SRC_DIR)/ft_putnchar_info.c \
$(SRC_DIR)/ft_putnchar_succ.c \
$(SRC_DIR)/ft_putnendl.c \
$(SRC_DIR)/ft_putnendl_err.c \
$(SRC_DIR)/ft_putnendl_info.c \
$(SRC_DIR)/ft_putnendl_succ.c \
$(SRC_DIR)/ft_putnstr.c \
$(SRC_DIR)/ft_putnstr_err.c \
$(SRC_DIR)/ft_putnstr_info.c \
$(SRC_DIR)/ft_putnstr_succ.c \
$(SRC_DIR)/ft_putstr.c \
$(SRC_DIR)/ft_putstr_err.c \
$(SRC_DIR)/ft_putstr_fd.c \
$(SRC_DIR)/ft_putstr_info.c \
$(SRC_DIR)/ft_putstr_succ.c \
$(SRC_DIR)/ft_splitwhitespaces.c \
$(SRC_DIR)/ft_str_realloc.c \
$(SRC_DIR)/ft_strcat.c \
$(SRC_DIR)/ft_strchr.c \
$(SRC_DIR)/ft_strchr_p.c \
$(SRC_DIR)/ft_strclr.c \
$(SRC_DIR)/ft_strcmp.c \
$(SRC_DIR)/ft_strcpy.c \
$(SRC_DIR)/ft_strdel.c \
$(SRC_DIR)/ft_strdup.c \
$(SRC_DIR)/ft_strequ.c \
$(SRC_DIR)/ft_striter.c \
$(SRC_DIR)/ft_striteri.c \
$(SRC_DIR)/ft_strjoin.c \
$(SRC_DIR)/ft_strjoin_free.c \
$(SRC_DIR)/ft_strlcat.c \
$(SRC_DIR)/ft_strlen.c \
$(SRC_DIR)/ft_strmap.c \
$(SRC_DIR)/ft_strmapi.c \
$(SRC_DIR)/ft_strncat.c \
$(SRC_DIR)/ft_strnchr.c \
$(SRC_DIR)/ft_strncmp.c \
$(SRC_DIR)/ft_strncpy.c \
$(SRC_DIR)/ft_strndup.c \
$(SRC_DIR)/ft_strnequ.c \
$(SRC_DIR)/ft_strnew.c \
$(SRC_DIR)/ft_strnstr.c \
$(SRC_DIR)/ft_strrchr.c \
$(SRC_DIR)/ft_strsplit.c \
$(SRC_DIR)/ft_strsplit_str.c \
$(SRC_DIR)/ft_strstr.c \
$(SRC_DIR)/ft_strstr_p.c \
$(SRC_DIR)/ft_strsub.c \
$(SRC_DIR)/ft_strtrim.c \
$(SRC_DIR)/ft_tolower.c \
$(SRC_DIR)/ft_toupper.c \
$(SRC_DIR)/gs_slist_at.c \
$(SRC_DIR)/gs_slist_clear.c \
$(SRC_DIR)/gs_slist_create.c \
$(SRC_DIR)/gs_slist_delete.c \
$(SRC_DIR)/gs_slist_delete_first.c \
$(SRC_DIR)/gs_slist_delete_nth.c \
$(SRC_DIR)/gs_slist_find.c \
$(SRC_DIR)/gs_slist_find_max.c \
$(SRC_DIR)/gs_slist_find_min.c \
$(SRC_DIR)/gs_slist_isempty.c \
$(SRC_DIR)/gs_slist_merge.c \
$(SRC_DIR)/gs_slist_pop.c \
$(SRC_DIR)/gs_slist_print.c \
$(SRC_DIR)/gs_slist_push_front.c \
$(SRC_DIR)/gs_slist_reverse.c \
$(SRC_DIR)/gs_slist_size.c \
$(SRC_DIR)/gs_slist_toarray.c \
$(SRC_DIR)/gs_sslist_at.c \
$(SRC_DIR)/gs_sslist_clear.c \
$(SRC_DIR)/gs_sslist_create.c \
$(SRC_DIR)/gs_sslist_delete.c \
$(SRC_DIR)/gs_sslist_delete_nth.c \
$(SRC_DIR)/gs_sslist_find.c \
$(SRC_DIR)/gs_sslist_insert.c \
$(SRC_DIR)/gs_sslist_isempty.c \
$(SRC_DIR)/gs_sslist_merge.c \
$(SRC_DIR)/gs_sslist_pop.c \
$(SRC_DIR)/gs_sslist_print.c \
$(SRC_DIR)/gs_sslist_size.c \
$(SRC_DIR)/gs_stack_clear.c \
$(SRC_DIR)/gs_stack_create.c \
$(SRC_DIR)/gs_stack_isempty.c \
$(SRC_DIR)/gs_stack_merge.c \
$(SRC_DIR)/gs_stack_pop.c \
$(SRC_DIR)/gs_stack_print.c \
$(SRC_DIR)/gs_stack_push.c \
$(SRC_DIR)/gs_stack_size.c
OBJ = $(patsubst $(SRC_DIR)/%.c, $(OBJ_DIR)/%.o, $(SRC))
all: $(NAME)
$(NAME): static
$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c
gcc -I$(INC) $(FLAGS) $(fPIC) -c $< -o $@
static: check_dir $(OBJ)
ar -r $(NAME) $(OBJ)
ranlib $(NAME)
dynamic: fPIC = -fPIC
dynamic: check_dir $(OBJ)
check_dir:
if [ ! -d $(OBJ_DIR) ]; then mkdir $(OBJ_DIR); fi;
clean:
rm -rf $(OBJ_DIR)
fclean: clean
rm -f $(NAME)
re: fclean all