lamme2024-scientific-project/Makefile

22 lines
358 B
Makefile
Raw Normal View History

OPTIONS=-shell-escape -file-line-error -synctex=1
SOURCE=report
all: latexmk
2024-03-27 19:51:22 +01:00
debug:
lualatex -shell-escape -file-line-error $(SOURCE)
build:
lualatex $(OPTIONS) $(SOURCE)
latexmk:
latexmk -pdf $(SOURCE)
bib:
biber --output-directory=build $(SOURCE)
glossaries:
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