From 38b07389ab818789ad21a67e87e978d6b5a41c23 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Fri, 10 May 2024 21:22:03 +0300 Subject: [PATCH] Create output dir if not exists --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d798a24..a331310 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,10 @@ LANGUAGES = en fi all: $(LANGUAGES) -$(LANGUAGES): +outputdir: + mkdir -p ./target + +$(LANGUAGES): outputdir xelatex --output-directory ./target marko_korhonen_cv_$@ biber --output-directory ./target marko_korhonen_cv_$@ xelatex --output-directory ./target marko_korhonen_cv_$@