diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-03-21 20:50:12 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-03-21 20:50:12 +0300 |
commit | c7e65522859c7343478766d56395a61fe548de36 (patch) | |
tree | 910ad6d5e86d953742c3a42ae911f0a8bee2f104 /Makefile | |
download | CFD-SIMPLE-c7e65522859c7343478766d56395a61fe548de36.tar.gz |
chore: add Makefile and report blueprint
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
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 $< & |