diff options
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 |