diff options
Diffstat (limited to '')
-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) |