avoid "parser" name ...

This commit is contained in:
Hartmut Seichter 2024-05-12 21:07:57 +02:00
parent 85abfeb743
commit e9407a6b6e
3 changed files with 19 additions and 17 deletions

View file

@ -3,10 +3,14 @@ build_dir := build
target_en := ${build_dir}/table.en.pdf
target_de := ${build_dir}/table.de.pdf
targets := ${target_de} ${target_en}
target_flags := --template pandoc-template/eisvogel.latex
coursebuilder := ../coursebuilder
all: ${targets}
${target_en}:
@echo "creating English version ..."
mkdir -p ${build_dir}
@ -17,13 +21,13 @@ ${target_de}:
mkdir -p ${build_dir}
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml -l de -f fields.yaml | pandoc ${target_flags} -o ${target_de}
all: ${target_de} ${target_en}
clean:
rm ${target_de} ${target_en}
rm -f ${targets}
debug:
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml mod.interactsys.yaml mod.test.yaml -p --title "## {}" -l de -f name credits goal content | pandoc ${target_flags} -V lang:de -o ${target_de}
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml mod.interactsys.yaml mod.test.yaml -p --title "## {}" -l de -f name credits goal content
# | pandoc ${target_flags} -V lang:de -o ${target_de}
.PHONY: clean