Add Makefile

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.
This commit is contained in:
Alan Orth 2012-12-02 00:52:08 +03:00
parent 637a17c765
commit 9f2694ea3f
1 changed files with 7 additions and 0 deletions

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
all: cv.pdf
cv.pdf: cv.tex
pdflatex cv.tex
clean:
rm -rf *.out *.dvi *.log *.out *.aux *.pdf