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