summaryrefslogtreecommitdiffstats
path: root/vector/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vector/makefile')
-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 $@