cv/Makefile
Alan Orth 4262810ba4 Makefile: Change default behavior for "all" target
"all" is the default target when you `make`, and it should make
ALL THE THINGS.
2012-12-11 19:38:53 +03:00

15 lines
187 B
Makefile

all: cv example
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