From 7f4277381b1c50f1a183702ac24812872e803adb Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sun, 20 Jan 2019 23:21:53 +0100 Subject: Initial commit, add mmvec.hpp with example, makefile and .gitignore --- makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..c18edc5 --- /dev/null +++ b/makefile @@ -0,0 +1,8 @@ +CPPC := c++ +CPPARGS := -Wall -Werror -I. -std=c++17 -pedantic + +all: build/example + +build/%: %.cpp mmvec.hpp + mkdir -p build + $(CPPC) $(CPPARGS) $< -o $@ -- cgit v1.2.1