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

all: 
	${COMPILER} ${CV}
	${COMPILER} ${CV}

clean:
	rm -rf ${OUTPUT}