diff options
author | Nao Pross <np@0hm.ch> | 2021-09-21 18:27:44 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2021-09-21 18:27:44 +0200 |
commit | fff1b3a7fe3fe5e0d1efc19ded62768582533693 (patch) | |
tree | 0a85494ed7306a14754b6f395351206050d0faff /doc/thesis/Makefile | |
parent | Create thesis with latex template (diff) | |
download | Fading-fff1b3a7fe3fe5e0d1efc19ded62768582533693.tar.gz Fading-fff1b3a7fe3fe5e0d1efc19ded62768582533693.zip |
Adjust template
Diffstat (limited to 'doc/thesis/Makefile')
-rw-r--r-- | doc/thesis/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/thesis/Makefile b/doc/thesis/Makefile index 3875fcc..c0b0b35 100644 --- a/doc/thesis/Makefile +++ b/doc/thesis/Makefile @@ -1,7 +1,7 @@ TEX := pdflatex TEXARGS := -halt-on-error -interaction=nonstopmode -SOURCES := Fading.tex +SOURCES := Fading.tex tex/classicthesis.sty tex/classicthesis-config.tex # Get the main file from the file MAIN := $(shell sed -ne 's/^.*\!TeX root =\(.*\)$$/\1/ p' $(SOURCES)) @@ -18,6 +18,9 @@ all: $(PDF) %.pdf: %.tex $(SOURCES) $(TEX) $(TEXARGS) $< -.PHONY: clean +.PHONY: clean cleanall clean: @rm -vf *.aux *.aue *.lof *.log *.lot *.fls *.out *.toc *.fmt *.fot *.cb *.cb2 .*.lb *.dvi *.xdv *-converted-to.* *.bbl *.bcf *.blg *-blx.aux *-blx.bib *.run.xml *.fdb_latexmk *.synctex *.synctex\(busy\) *.synctex.gz *.synctex.gz\(busy\) *.pdfsync *.alg *.loa acs-*.bib *.thm *.nav *.pre *.snm *.vrb *.soc *.cut *.cpt *.spl *.ent *.lox *.mf *.acn *.acr *.glg *.glo *.gls *.glsdefs *.lzo *.lzs + +cleanall: clean + @rm -vf $(PDF) |