From f344cd067cc5829a3e76fd4b7d6779f2502428ea Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 5 Jan 2023 17:39:23 +0100 Subject: Initial sync --- notes/mathe1/makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 notes/mathe1/makefile (limited to 'notes/mathe1/makefile') diff --git a/notes/mathe1/makefile b/notes/mathe1/makefile new file mode 100644 index 0000000..3cd45c6 --- /dev/null +++ b/notes/mathe1/makefile @@ -0,0 +1,12 @@ +VIEW = zathura + +all: + @mkdir -p build/ + @pandoc main.md --toc -N -V fontsize=11pt -V geometry:a4paper -V geometry:margin=2.5cm -o build/main.pdf --pdf-engine-opt=-shell-escape + @cp build/main.pdf . + +clean: + @$(RM) -rf build + +run: clean all + @$(VIEW) build/main.pdf -- cgit v1.2.3