Alan Orth
4262810ba4
"all" is the default target when you `make`, and it should make ALL THE THINGS.
15 lines
187 B
Makefile
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
|