diff options
author | Determinant <[email protected]> | 2018-06-29 14:29:52 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-06-29 14:29:52 -0400 |
commit | 6084d86f5162f54b33b7004427311113bf9b657c (patch) | |
tree | 92068a17b6db299c14648a13966a3de0d5053a24 /Makefile | |
parent | fcade913307087a736607234678db189af71214d (diff) |
update travis CIstack-free-trigger
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ .PHONY: all -all: test14 test17 +all: test14 test17 test14_stack_free test17_stack_free test14: test.cpp promise.hpp $(CXX) -o $@ test.cpp -std=c++14 -Wall -Wextra -Wpedantic -O2 test17: test.cpp promise.hpp $(CXX) -o $@ test.cpp -std=c++17 -Wall -Wextra -Wpedantic -O2 +test14_stack_free: test.cpp promise.hpp + $(CXX) -o $@ test.cpp -std=c++14 -Wall -Wextra -Wpedantic -O2 -DCPPROMISE_USE_STACK_FREE +test17_stack_free: test.cpp promise.hpp + $(CXX) -o $@ test.cpp -std=c++17 -Wall -Wextra -Wpedantic -O2 -DCPPROMISE_USE_STACK_FREE |