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

View file

@ -1,13 +1,10 @@
.PHONY: en fi
all: en fi
LANGUAGES = en fi
en:
xelatex marko_korhonen_cv_en
biber marko_korhonen_cv_en
xelatex marko_korhonen_cv_en
all: $(LANGUAGES)
fi:
xelatex marko_korhonen_cv_fi
biber marko_korhonen_cv_fi
xelatex marko_korhonen_cv_fi
$(LANGUAGES):
xelatex --output-directory ./target marko_korhonen_cv_$@
biber --output-directory ./target marko_korhonen_cv_$@
xelatex --output-directory ./target marko_korhonen_cv_$@