build: add Makefile and latexmk configuration
This commit is contained in:
parent
f4b2fe6962
commit
5c412a7c58
3 changed files with 13 additions and 0 deletions
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
|
||||||
2
latexmkrc
Normal file
2
latexmkrc
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
$pdf_mode = 1; # Tex - pdf
|
||||||
|
$out_dir = "build"; # Don't clobber the repository's root directory
|
||||||
Loading…
Add table
Add a link
Reference in a new issue