summaryrefslogtreecommitdiffstats
path: root/vector/makefile
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-25 19:05:44 +0100
committerNao Pross <naopross@thearcway.org>2019-01-25 19:05:44 +0100
commit5b68500333deb7e15bc86f9059f214d46afeaf7e (patch)
treeb9a9a9658331fc64863a189011646327d1823998 /vector/makefile
parentUpdate vector.cpp to use STL std::transform and std::inner_product (diff)
downloadcplusplus-5b68500333deb7e15bc86f9059f214d46afeaf7e.tar.gz
cplusplus-5b68500333deb7e15bc86f9059f214d46afeaf7e.zip
Delete vector
Diffstat (limited to '')
-rw-r--r--vector/makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/vector/makefile b/vector/makefile
deleted file mode 100644
index 31136ea..0000000
--- a/vector/makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-CC := gcc
-CARGS := -Wall -Werror -I.
-LDARGS := -lm
-
-CPPC := g++-8
-CPPARGS := -Wall -I. -std=c++17
-
-all: vector.pdf c_build/vector cpp_build/vector
-
-%.pdf: %.md
- pandoc \
- --from=markdown+raw_tex \
- --latex-engine=xelatex \
- --number-sections \
- --filter pandoc-include-code \
- --highlight-style tango \
- $< -o $@
-
-c_build/%: %.c
- mkdir -p c_build
- $(CC) $(CARGS) $< -o $@ $(LDARGS)
-
-cpp_build/%: %.cpp
- mkdir -p cpp_build
- $(CPPC) $(CPPARGS) $< -o $@