diff --git a/cpp/Makefile b/cpp/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..a6877b0b82f1e83b68e57b14c5c28c0c8203a641 --- /dev/null +++ b/cpp/Makefile @@ -0,0 +1,11 @@ + +INCLUDES += -I. + +CXXFLAGS += -std=c++14 -O3 -Wall -Wextra -Wfatal-errors -Wno-deprecated-declarations $(INCLUDES) + +switchchain: + +# target : dep1 dep2 dep3 +# $@ = target +# $< = dep1 +# $^ = dep1 dep2 dep3