build: add Makefile and latexmk configuration

This commit is contained in:
Bruno BELANYI 2019-12-31 20:36:53 +01:00
parent f4b2fe6962
commit 5c412a7c58
3 changed files with 13 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/build
/cv_*.pdf

9
Makefile Normal file
View 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
View File

@ -0,0 +1,2 @@
$pdf_mode = 1; # Tex - pdf
$out_dir = "build"; # Don't clobber the repository's root directory