summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-22 15:29:19 +0100
committerNao Pross <naopross@thearcway.org>2019-01-22 15:29:19 +0100
commitdbf39df8950b2ba03c59804004eb0f6c36a134b3 (patch)
tree40319d50be182d35f4dcd71c66c4068640e2138a
parentAdd ninja rule to build example (diff)
downloadlibmm-dbf39df8950b2ba03c59804004eb0f6c36a134b3.tar.gz
libmm-dbf39df8950b2ba03c59804004eb0f6c36a134b3.zip
Delete makefile
-rw-r--r--makefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index c18edc5..0000000
--- a/makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-CPPC := c++
-CPPARGS := -Wall -Werror -I. -std=c++17 -pedantic
-
-all: build/example
-
-build/%: %.cpp mmvec.hpp
- mkdir -p build
- $(CPPC) $(CPPARGS) $< -o $@