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.
17 lines
219 B
17 lines
219 B
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
|
|
|