lamme2024-scientific-project/Makefile

19 lines
321 B
Makefile
Executable File

OPTIONS=-shell-escape -file-line-error -synctex=1 -interaction=batchmode
SOURCE=report
all: build bib glossaries latexmk
debug:
lualatex -shell-escape -file-line-error $(SOURCE)
build:
lualatex $(OPTIONS) $(SOURCE)
latexmk:
latexmk -gg -pdf $(SOURCE)
bib:
biber $(SOURCE)
glossaries:
makeglossaries $(SOURCE)