blob: ba6ee2cb58aa34bee1c3a2c6a777308257e2f35d (
plain) (
tree)
|
|
.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
|