Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compilation on macOS #1

Open
augustobecker opened this issue Oct 14, 2023 · 0 comments
Open

Compilation on macOS #1

augustobecker opened this issue Oct 14, 2023 · 0 comments

Comments

@augustobecker
Copy link
Owner

NAME = so_long
NAME_BONUS = so_long_bonus

GREEN = \033[0;32m
RED = \033[0;31m
RESET = \033[0m

LIBFT = ./libraries/Libft/libft.a

CC = clang

STANDARD_FLAGS = -Wall -Werror -Wextra
MINILIBX_FLAGS = -L./libraries/mlx -lmlx -lXext -lX11 -I./libraries/mlx

VALGRIND = @Valgrind --leak-check=full --show-leak-kinds=all
--track-origins=yes --quiet --tool=memcheck --keep-debuginfo=yes

REMOVE = rm -f

SRCS_DIR = ./sources/
BONUS_SRCS_DIR = ./bonus_sources/

SRCS = ( a d d p r e f i x (SRCS_DIR),
so_long.c
ft_check_map.c
ft_close_game.c
ft_free_memory.c
ft_handle_input.c
ft_init_game.c
ft_init_map.c
ft_render_map.c
ft_utils.c)

SRCS_BONUS = ( a d d p r e f i x (BONUS_SRCS_DIR),
so_long_bonus.c
ft_check_map_bonus.c
ft_close_game_bonus.c
ft_free_memory_bonus.c
ft_handle_input_bonus.c
ft_init_game_bonus.c
ft_init_map_bonus.c
ft_render_map_bonus.c
ft_utils_bonus.c)

all: ${LIBFT} ${NAME}

${NAME}:
${CC} ${SRCS} ${LIBFT} ${STANDARD_FLAGS} ${MINILIBX_FLAGS} -o ${NAME}
@echo "$(NAME): ( G R E E N ) (NAME) was compiled.$(RESET)"
@echo

bonus: ${LIBFT} ${NAME_BONUS}

${NAME_BONUS}:
${CC} ${SRCS_BONUS} ${LIBFT} ${STANDARD_FLAGS} ${MINILIBX_FLAGS} -o ${NAME_BONUS}
@echo "\n$(NAME): ( G R E E N ) (NAME) was compiled with Bonus.$(RESET)"
@echo

${LIBFT}:
@echo
make bonus -C libraries/Libft

clean:
make clean -C libraries/Libft
@echo

fclean:
${REMOVE} ${NAME} ${NAME_BONUS}
@echo "${NAME}: ${RED}${NAME} and ${NAME_BONUS} were deleted${RESET}"
@echo

re: fclean all

rebonus: fclean ${NAME_BONUS}

run: ${NAME}
${VALGRIND} ./${NAME} assets/maps/valid/map4.ber

run_bonus: ${NAME_BONUS}
${VALGRIND} ./${NAME_BONUS} assets/maps/valid/bonus/map5.ber

.PHONY: all clean fclean re rebonus valgrind run run_bonus

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant