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.
 
 

16 lines
197 B

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