1# **************************************************************************** #
4# Makefile :+: :+: :+: #
6# By: kamitsui <kamitsui@student.42tokyo.jp> +#+ +:+ +#+ #
8# Created: 2025/03/15 19:38:29 by kamitsui #+# #+# #
9# Updated: 2025/04/25 21:27:26 by kamitsui ### ########.fr #
11# **************************************************************************** #
14# @brief This File is a Makefile for building brain in ex02 directory.
24# Object files and dependency files
25OBJS = $(addprefix $(OBJ_DIR)/, $(SRCS:.cpp=.o))
26DEPS = $(addprefix $(DEP_DIR)/, $(SRCS:.cpp=.d))
33CXXFLAGS = -Wall -Wextra -Werror -std=c++98
34CF_DEP = -MMD -MP -MF $(@:$(OBJ_DIR)/%.o=$(DEP_DIR)/%.d)
36# Rules for building object files
40 $(CXX) $(CXXFLAGS) $(CF_DEP) -c $< -o $@
50 $(CXX) $(CXXFLAGS) $(OBJS) -o $(NAME)
53 rm -rf $(OBJ_DIR) $(DEP_DIR)
60.PHONY: all clean fclean re