From 48025d54aac60dc04b9df8fd0397a29663885c6b Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 7 Oct 2021 15:06:38 +0200 Subject: Set up and create bibliography --- doc/thesis/Makefile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'doc/thesis/Makefile') diff --git a/doc/thesis/Makefile b/doc/thesis/Makefile index 84d4a45..e5315de 100644 --- a/doc/thesis/Makefile +++ b/doc/thesis/Makefile @@ -1,7 +1,9 @@ -TEX := pdflatex +TEX := xelatex TEXARGS := -halt-on-error -interaction=nonstopmode -SOURCES := Fading.tex \ +SOURCES := \ + Fading.tex \ + Fading.bib \ tex/classicthesis.sty \ tex/classicthesis-config.tex \ \ @@ -27,7 +29,8 @@ all: $(PDF) %.pdf: %.tex $(SOURCES) $(TEX) $(TEXARGS) $< - # TODO: makeindex and stuff + # TODO: makeindex + biber $(basename $(MAIN)) $(TEX) $(TEXARGS) $< .PHONY: clean cleanall @@ -38,3 +41,7 @@ clean: cleanall: clean @rm -vf $(PDF) + +.PHONY: continuous +continuous: + ls $(SOURCES) | entr -d make -- cgit v1.2.1