aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ba6ee2cb58aa34bee1c3a2c6a777308257e2f35d (plain) (blame)
1
2
3
4
5
6
.PHONY: all
all: test14 test17
test14: test.cpp promise.hpp
	$(CXX) -o $@ test.cpp -std=c++14 -Wall -Wextra -Wpedantic -O2
test17: test.cpp promise.hpp
	$(CXX) -o $@ test.cpp -std=c++17 -Wall -Wextra -Wpedantic -O2