diff options
author | Determinant <[email protected]> | 2018-02-01 20:21:53 -0500 |
---|---|---|
committer | Determinant <[email protected]> | 2018-02-01 20:21:53 -0500 |
commit | 25c438b9056e2dee99fcc8680a6c295df9aa939e (patch) | |
tree | f1d70b2354f63c76d2ed13c29f61fdc128b8adff /Makefile | |
parent | e609deb93ca365b253efa2173ce83046835a8d84 (diff) |
...
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,2 +1,6 @@ -test: test.cpp promise.hpp - g++ -o test test.cpp -std=c++17 +.PHONY: all +all: test14 test17 +test14: test.cpp promise.hpp + g++ -o $@ test.cpp -std=c++17 +test17: test.cpp promise.hpp + g++ -o $@ test.cpp -std=c++14 |