aboutsummaryrefslogtreecommitdiffhomepage
path: root/notes/mathe1/makefile
blob: 3cd45c6d800819d4da5fdec139be27d393241b3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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