blob: 0c0f4000443cf68a872f2f776662217a5eb869ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
default: build
build:
ls target || mkdir target
cp *tex target
cd target && xelatex paper.tex
cd target && xelatex answers.tex
clean:
rm -rf target
read:
zathura target/paper.pdf&
|