aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 9ffec4c6b01c76d45b1d0fc67560de56e1bb2429 (plain)
1
2
3
4
5
6
7
8
9
TARGET = resume.pdf

all: $(TARGET)

$(TARGET): resume.tex resume.cls
	xelatex $< --jobname=$@

clean:
	rm -f *.aux *.log *.out $(TARGET)