aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2018-02-03 20:16:39 -0500
committerDeterminant <ted.sybil@gmail.com>2018-02-03 20:16:39 -0500
commit7fd1e7b5298d1c7a115019d6d6b61d3d7224f04a (patch)
tree2d559289b2ff9b5f678195df67eb15b686888739 /Makefile
parentbc940e3365faad180a536d602f7ae0110515ee68 (diff)
...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3ac8bff..ba6ee2c 100644
--- a/Makefile
+++ b/Makefile
@@ -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