coursebuilder/test/simple/Makefile

31 lines
1,002 B
Makefile
Raw Permalink Normal View History

2024-05-01 08:10:27 +02:00
coursebuilder := ../../coursebuilder
2023-11-08 21:23:24 +01:00
table.en.pdf:
@echo "creating English version ..."
2024-05-01 08:10:27 +02:00
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml -l en -f fields.yaml | pandoc --template pandoc-template/eisvogel.latex -o table.en.pdf
2023-11-08 20:42:15 +01:00
2023-11-08 21:23:24 +01:00
table.de.pdf:
@echo "creating German version ..."
2024-05-01 08:10:27 +02:00
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml -l de -f fields.yaml | pandoc --template pandoc-template/eisvogel.latex -o table.de.pdf
2023-11-08 21:23:24 +01:00
all: table.en.pdf table.de.pdf
2023-11-08 20:42:15 +01:00
2024-10-29 17:46:46 +01:00
clean:
rm -f table.en.pdf table.de.pdf
2024-05-01 14:58:41 +02:00
debug-template:
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml mod.interactsys.yaml -l de -f name credits --template "$$name | $$credits"
2024-05-01 14:58:41 +02:00
debug-markdown:
2024-10-29 17:46:46 +01:00
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml mod.interactsys.yaml -l de -f name credits
debug-book:
2024-10-29 17:46:46 +01:00
python ${coursebuilder} -s schema.yaml -b book.yaml -l de
debug:
2024-05-01 08:10:27 +02:00
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml -l de -f fields.yaml
2024-10-29 17:46:46 +01:00
table:
python ${coursebuilder} -s schema.yaml -b book.yaml -l de -f fields.yaml