diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ .PHONY: all all: test14 test17 test14: test.cpp promise.hpp - g++ -o $@ test.cpp -std=c++14 -Wall -Wextra -Wpedantic -O2 + $(CXX) -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 + $(CXX) -o $@ test.cpp -std=c++17 -Wall -Wextra -Wpedantic -O2 |