aboutsummaryrefslogtreecommitdiff
path: root/notes/Makefile
blob: 4f8bc0018551182eedcf48b8d11471d874131f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
default: build

build:
	ls target || mkdir target
	cp *tex target
	cp -r images target
	cd target && xelatex paper.tex
clean:
	rm -rf target
read:
	zathura target/paper.pdf&