build: add Makefile and latexmk configuration
This commit is contained in:
parent
f4b2fe6962
commit
5c412a7c58
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/build
|
||||
/cv_*.pdf
|
9
Makefile
Normal file
9
Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
.PHONY: all
|
||||
all: cv_en.pdf
|
||||
|
||||
cv_en.pdf: build/cv_en.pdf
|
||||
cp build/cv_en.pdf .
|
||||
|
||||
.PHONY: build/cv_en.pdf
|
||||
build/cv_en.pdf:
|
||||
@latexmk # Let the tool do its job
|
Loading…
Reference in a new issue