diff options
author | Nao Pross <np@0hm.ch> | 2021-10-07 15:06:38 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2021-10-07 15:06:38 +0200 |
commit | 48025d54aac60dc04b9df8fd0397a29663885c6b (patch) | |
tree | e219d447fc0b579219ac2eed8d512d5645c07796 /doc/thesis/Makefile | |
parent | Delete PDF (diff) | |
download | Fading-48025d54aac60dc04b9df8fd0397a29663885c6b.tar.gz Fading-48025d54aac60dc04b9df8fd0397a29663885c6b.zip |
Set up and create bibliography
Diffstat (limited to 'doc/thesis/Makefile')
-rw-r--r-- | doc/thesis/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
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 |