2024-04-18 18:22:59 +02:00
|
|
|
OPTIONS=-shell-escape -file-line-error -synctex=1
|
2024-03-26 15:16:00 +01:00
|
|
|
SOURCE=report
|
2024-04-09 20:41:58 +02:00
|
|
|
all: latexmk
|
2024-03-27 19:51:22 +01:00
|
|
|
debug:
|
|
|
|
lualatex -shell-escape -file-line-error $(SOURCE)
|
2024-03-20 12:19:56 +01:00
|
|
|
|
|
|
|
build:
|
|
|
|
lualatex $(OPTIONS) $(SOURCE)
|
|
|
|
|
|
|
|
latexmk:
|
2024-04-09 20:41:58 +02:00
|
|
|
latexmk -pdf $(SOURCE)
|
2024-03-20 12:19:56 +01:00
|
|
|
|
|
|
|
bib:
|
2024-04-09 20:41:58 +02:00
|
|
|
biber --output-directory=build $(SOURCE)
|
2024-03-20 12:19:56 +01:00
|
|
|
|
|
|
|
glossaries:
|
2024-04-09 20:41:58 +02:00
|
|
|
makeglossaries -d build $(SOURCE)
|
2024-04-08 17:24:40 +02:00
|
|
|
|
2024-04-18 12:48:49 +02:00
|
|
|
index:
|
|
|
|
makeindex -d build $(SOURCE)
|
2024-04-08 17:24:40 +02:00
|
|
|
.PHONY: build
|