CXX = c++ CXXFLAGS= -std=c++98 -Werror -Wextra -Wall -Iincludes all: tester tester: tester.o c++ tester.o -o tester clean: rm -rf tester.o fclean: clean rm -rf tester re: fclean all .PHONY: all clean fclean re