diff options
| author | Determinant <ted.sybil@gmail.com> | 2018-02-03 20:16:39 -0500 |
|---|---|---|
| committer | Determinant <ted.sybil@gmail.com> | 2018-02-03 20:16:39 -0500 |
| commit | 7fd1e7b5298d1c7a115019d6d6b61d3d7224f04a (patch) | |
| tree | 2d559289b2ff9b5f678195df67eb15b686888739 /Makefile | |
| parent | bc940e3365faad180a536d602f7ae0110515ee68 (diff) | |
...
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 |