summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 10e62897e161ae1456fec6aeafd53e775e3c59b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
SRCS	:= cv.tex

TARGET	:= cv.pdf

LATEX	:= pdflatex
YES		:= yes
RM		:= rm -vf

default:
	${YES} '' | ${LATEX} ${SRCS} -o ${TARGET}
	${RM} *.log *.aux *.out *.xmpi

clean:
	${RM} *.log *.aux *.out *.xmpi *.pdf