You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
291 B

2 years ago
NAME = easyfind
SRCS = main.cpp
2 years ago
OBJS= $(SRCS:.cpp=.o)
2 years ago
CXX = c++
2 years ago
CXXFLAGS = -std=c++98 -Werror -Wextra -Wall
$(NAME) : $(OBJS)
2 years ago
$(CXX) $(CXXFLAGS) $(OBJS) -o $(NAME)
2 years ago
all : $(NAME)
clean :
rm -rf $(OBJS)
fclean : clean
rm -rf $(NAME)
re : fclean all
.PHONY : all clean fclean re