summaryrefslogtreecommitdiff
path: root/Makefile
blob: cea989ddf44dbb057bee43c851527385bef90ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
OUTPUT = *.log *.out *.aux cv.pdf
TEMPLATE = template.tex
CV = cv.tex
COMPILER = xelatex

all: clean cv.tex
	${COMPILER} ${CV}

clean:
	rm -rf ${OUTPUT}

cv.tex:
	cp ${TEMPLATE} ${CV}