-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
114 lines (98 loc) · 4.28 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
# | | ___ \ \ | |
# | | ) | |\/ | _ | | / _
# ___ __| __/ | | ( | < __/
# _| _____| _| _| \__,_| _|\_\ \___|
# by jcluzet
################################################################################
# CONFIG #
################################################################################
NAME := push_swap
CC := gcc
FLAGS := #-Wall -Wextra -Werror
################################################################################
# PROGRAM'S SRCS #
################################################################################
SRCS := main.c \
build_struct.c \
functions.c \
functions_utils.c \
bigSort/locateA.c \
libft/ft_tolower.c \
libft/ft_substr.c \
libft/ft_toupper.c \
libft/ft_strncmp.c \
libft/ft_strjoin.c \
libft/ft_putendl_fd.c \
libft/ft_memset.c \
libft/ft_strchr.c \
libft/ft_isascii.c \
libft/ft_strlcat.c \
libft/ft_lstsize.c \
libft/ft_striteri.c \
libft/ft_putchar_fd.c \
libft/ft_strtrim.c \
libft/ft_strnstr.c \
libft/ft_lstclear.c \
libft/ft_memcmp.c \
libft/ft_putnbr_fd.c \
libft/ft_lstmap.c \
libft/ft_isalnum.c \
libft/ft_strlcpy.c \
libft/ft_isprint.c \
libft/ft_strlen.c \
libft/ft_lstadd_back.c \
libft/ft_isalpha.c \
libft/ft_lstlast.c \
libft/ft_strmapi.c \
libft/ft_memchr.c \
libft/ft_atoi.c \
libft/ft_lstadd_front.c \
libft/ft_memcpy.c \
libft/ft_strrchr.c \
libft/ft_split.c \
libft/ft_calloc.c \
libft/ft_isdigit.c \
libft/ft_memmove.c \
libft/ft_putstr_fd.c \
libft/ft_lstiter.c \
libft/ft_strdup.c \
libft/ft_lstnew.c \
libft/ft_bzero.c \
libft/ft_lstdelone.c \
libft/ft_itoa.c \
bigSort/locateInter.c \
bigSort/big_sort.c \
bigSort/moveUpB.c \
bigSort/locationA.c \
quartet_quintette.c \
start_sorting.c \
bigSort/sortedPart_process.c \
bigSort/replacement.c \
bigSort/mutual_rrs.c \
OBJS := $(SRCS:.c=.o)
.c.o:
${CC} ${FLAGS} -c $< -o ${<:.c=.o}
################################################################################
# Makefile objs #
################################################################################
CLR_RMV := \033[0m
RED := \033[1;31m
GREEN := \033[1;32m
YELLOW := \033[1;33m
BLUE := \033[1;34m
CYAN := \033[1;36m
RM := rm -f
${NAME}: ${OBJS}
@echo "$(GREEN)Compilation ${CLR_RMV}of ${YELLOW}$(NAME) ${CLR_RMV}..."
${CC} ${FLAGS} -o ${NAME} ${OBJS}
@echo "$(GREEN)$(NAME) created[0m ✔️"
all: ${NAME}
bonus: all
clean:
@ ${RM} *.o */*.o */*/*.o
@ echo "$(RED)Deleting $(CYAN)$(NAME) $(CLR_RMV)objs ✔️"
fclean: clean
@ ${RM} ${NAME}
@ echo "$(RED)Deleting $(CYAN)$(NAME) $(CLR_RMV)binary ✔️"
re: fclean all
.PHONY: all clean fclean re