-
Notifications
You must be signed in to change notification settings - Fork 22
/
Makefile
129 lines (120 loc) · 3.24 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: jrameau <jrameau@student.42.us.org> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2016/09/21 14:58:27 by jrameau #+# #+# #
# Updated: 2017/04/24 03:49:23 by jrameau ### ########.fr #
# #
# **************************************************************************** #
NAME = libft.a
CFLAGS = -Wall -Werror -Wextra -I. -c
FILES = ft_memset.c \
ft_bzero.c \
ft_memcpy.c \
ft_memccpy.c \
ft_strlen.c \
ft_memmove.c \
ft_memchr.c \
ft_memcmp.c \
ft_strcpy.c \
ft_strdup.c \
ft_strcat.c \
ft_strncat.c \
ft_strlcat.c \
ft_strchr.c \
ft_strrchr.c \
ft_strstr.c \
ft_strnstr.c \
ft_strcmp.c \
ft_strncmp.c \
ft_atoi.c \
ft_islower.c \
ft_isupper.c \
ft_isalpha.c \
ft_isdigit.c \
ft_isalnum.c \
ft_isprint.c \
ft_toupper.c \
ft_tolower.c \
ft_strncpy.c \
ft_isascii.c \
ft_memalloc.c \
ft_memdel.c \
ft_strnew.c \
ft_strdel.c \
ft_strclr.c \
ft_striter.c \
ft_striteri.c \
ft_strmap.c \
ft_strmapi.c \
ft_strequ.c \
ft_strnequ.c \
ft_strsub.c \
ft_strjoin.c \
ft_strtrim.c \
ft_strsplit.c \
ft_itoa.c \
ft_putchar.c \
ft_putchar_fd.c \
ft_countwords.c \
ft_putstr.c \
ft_putendl.c \
ft_putnbr.c \
ft_putnbr_fd.c \
ft_putstr_fd.c \
ft_putendl_fd.c \
ft_lstnew.c \
ft_lstdelone.c \
ft_lstdel.c \
ft_lstadd.c \
ft_lstiter.c \
ft_lstmap.c \
ft_strndup.c \
ft_capitalize.c \
ft_lst_reverse.c \
ft_realloc.c \
ft_strjoinch.c \
ft_strnchr.c \
ft_copyuntil.c \
ft_strstartswith.c \
ft_intlen.c \
ft_strendswith.c \
ft_pathjoin.c \
ft_lstaddback.c \
get_next_line.c \
ft_putnstr.c \
ft_strreplace.c \
ft_isemptystr.c \
ft_strsplitall.c \
ft_countwordsall.c \
ft_freestrarr.c \
ft_strjoincl.c \
ft_strjoinchcl.c \
ft_count2darray.c \
ft_strarrmax.c \
ft_get_parent_path.c
OBJ = $(FILES:%.c=%.o)
all: $(NAME)
copy:
cp -f libc-funcs/*.c .
cp -f additional-funcs/*.c .
cp -f bonus-funcs/*.c .
cp -f personal-funcs/*.c .
# This won't run if the .o files don't exist or are not modified
$(NAME): $(OBJ)
ar rcs $(NAME) $(OBJ)
# This won't run if the source files don't exist or are not modified
$(OBJ): $(FILES)
gcc $(CFLAGS) $(FILES)
clean:
rm -f $(OBJ)
rm -f $(FILES) # comment this line if you don't want it to remove the source files from the root
fclean: clean
rm -f $(NAME)
re: fclean all
# I use .PHONY to make sure that gnu make will still run even if files called
# clean / fclean / all and re already exist in the directory
.PHONY: clean fclean all re