-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
70 lines (54 loc) · 2.56 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: gmacias- <gmacias-@student.42barcel> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/05/16 17:23:41 by gmacias- #+# #+# #
# Updated: 2022/05/19 16:09:09 by gmacias- ### ########.fr #
# #
# **************************************************************************** #
# Se viene texto, para ver si me ayuda a entenderlo y tambien si esque alguien#
# lo lee (cosa que dudo). #
# INCLUDE; añade todos los .c y .h al ejecutable de una LIBRERIA, de ahi libft#
# /bin/; es un ejecutable, (el del sistema), esto sirve para evitar renombres.#
# $(MAKE) xxx -C; llama a otro make para que se cree antes que este mismo. #
# $@; variabble que guarda el valor antes de los dos puntos ($xxx : ...) #
# $^; variable que guarda TODO despues de los dos puntos (... : $xxx $xxx) #
# Si se ejecuta bien este make, deberian salir 3 nuevos archivos: #
# Carpeta "objects/"; guarda los objetos de este directorio. #
# Archivador "libft.a"; es un archivo con los obj del libft para compilar. #
# Ejecutable "pushswap"; es el programa que no depende de nada por los INCLUDE#
NAME = push_swap
INCLUDERS = sources/push_swap.h
SRCS = checkers.c fill.c finish_him.c ft_utils.c \
make_position.c move_stack.c operation_r.c operations.c \
order.c push_swap.c utils_algoritmia.c
OBJS_DIR = objects
OBJS = $(addprefix $(OBJS_DIR)/,$(SRCS:%.c=%.o))
DEPS = $(SRCS:%.c=%.d)
CC = gcc
RM = /bin/rm -rf
CFLAGS = -g -Wall -Wextra -Werror -MMD -fsanitize=address -fsanitize=undefined
vpath %.c sources
all : make_dir $(NAME)
make_dir:
@mkdir -p $(OBJS_DIR)
$(OBJS_DIR)/%.o: sources/%.c Makefile
@$(CC) $(CFLAGS) -c $< -o $@
-include $(DEPS)
$(NAME) : $(OBJS) $(INCLUDERS)
@echo "Compiling push swap..."
@$(CC) $(CFLAGS) $(OBJS) -o $(NAME)
@echo "Done !"
clean :
@echo "Removing push swap objects..."
@$(RM) $(OBJS_DIR)
@echo "Done !"
fclean : clean
@echo "Removing execute push swap..."
@$(RM) $(NAME)
@echo "Done !"
re : fclean all
.PHONY : all clean fclean re