15 lines
183 B
Makefile
15 lines
183 B
Makefile
all: cv.pdf
|
|
|
|
cv: cv.pdf
|
|
|
|
cv.pdf: cv.tex
|
|
pdflatex cv.tex
|
|
|
|
example: template.pdf
|
|
|
|
template.pdf: template.tex
|
|
pdflatex template.tex
|
|
|
|
clean:
|
|
rm -rf *.out *.dvi *.log *.out *.aux *.pdf
|