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

all: $(TARGET)

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

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