Output files into output directory
This commit is contained in:
parent
7d9fd72925
commit
fcce69320c
2 changed files with 7 additions and 18 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -1,9 +1 @@
|
||||||
*.synctex.gz
|
target/
|
||||||
*.log
|
|
||||||
*.out
|
|
||||||
*.aux
|
|
||||||
*.blg
|
|
||||||
*.bbl
|
|
||||||
*.bcf
|
|
||||||
*.run.xml
|
|
||||||
*.pdf
|
|
||||||
|
|
15
Makefile
15
Makefile
|
@ -1,13 +1,10 @@
|
||||||
.PHONY: en fi
|
.PHONY: en fi
|
||||||
|
|
||||||
all: en fi
|
LANGUAGES = en fi
|
||||||
|
|
||||||
en:
|
all: $(LANGUAGES)
|
||||||
xelatex marko_korhonen_cv_en
|
|
||||||
biber marko_korhonen_cv_en
|
|
||||||
xelatex marko_korhonen_cv_en
|
|
||||||
|
|
||||||
fi:
|
$(LANGUAGES):
|
||||||
xelatex marko_korhonen_cv_fi
|
xelatex --output-directory ./target marko_korhonen_cv_$@
|
||||||
biber marko_korhonen_cv_fi
|
biber --output-directory ./target marko_korhonen_cv_$@
|
||||||
xelatex marko_korhonen_cv_fi
|
xelatex --output-directory ./target marko_korhonen_cv_$@
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue