Output files into output directory

This commit is contained in:
Marko Korhonen 2024-05-10 21:19:30 +03:00
parent 7d9fd72925
commit fcce69320c
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
2 changed files with 7 additions and 18 deletions

10
.gitignore vendored
View file

@ -1,9 +1 @@
*.synctex.gz target/
*.log
*.out
*.aux
*.blg
*.bbl
*.bcf
*.run.xml
*.pdf

View file

@ -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_$@