Alan Orth
9f2694ea3f
Can be used to recompile the CV's LaTeX -> PDF: make cv.pdf 'cv.pdf' is the default target, so you can also just: make A 'clean' target is also provided for easy cleanup.
8 lines
97 B
Makefile
8 lines
97 B
Makefile
all: cv.pdf
|
|
|
|
cv.pdf: cv.tex
|
|
pdflatex cv.tex
|
|
|
|
clean:
|
|
rm -rf *.out *.dvi *.log *.out *.aux *.pdf
|