We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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 = (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 = (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}: (NAME) was compiled.$(RESET)"
${CC} ${SRCS} ${LIBFT} ${STANDARD_FLAGS} ${MINILIBX_FLAGS} -o ${NAME}
@echo "$(NAME):
@echo
bonus: ${LIBFT} ${NAME_BONUS}
${NAME_BONUS}: (NAME) was compiled with Bonus.$(RESET)"
${CC} ${SRCS_BONUS} ${LIBFT} ${STANDARD_FLAGS} ${MINILIBX_FLAGS} -o ${NAME_BONUS}
@echo "\n$(NAME):
@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
The text was updated successfully, but these errors were encountered: