summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: d819718490d53b2eb2f2990bc74c31897a10affc (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