lamme2024-scientific-project/Makefile

16 lines
265 B
Makefile
Executable File

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