summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-03-21 20:50:12 +0300
committereug-vs <eugene@eug-vs.xyz>2022-03-21 20:50:12 +0300
commitc7e65522859c7343478766d56395a61fe548de36 (patch)
tree910ad6d5e86d953742c3a42ae911f0a8bee2f104 /Makefile
downloadCFD-SIMPLE-c7e65522859c7343478766d56395a61fe548de36.tar.gz
chore: add Makefile and report blueprint
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a9b8612
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+all: out/report.pdf
+
+out/%.pdf: src/report/%.tex
+ mkdir -p out
+ pdflatex --output-directory=out $<
+
+open: out/report.pdf
+ zathura $< &