From bcdd66e691ab2ee0f24d049bd2b8c85ff3ee92e7 Mon Sep 17 00:00:00 2001 From: Michael Bredel Date: Tue, 9 Jan 2018 15:06:10 +0100 Subject: [PATCH] Changed the Makefile to force removement of files when using the clean-target. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3cf8f5d..d2b626d 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ publish: all clean: @rm -rf *run.xml *-blx.bib *.aux *.bbl *.blg *.brf *.log *.lof *.lot *.lol *.out *.tcp *.toc *.tps *.bak *.backup *.pdfsync *.synctex.gz *.*~ - @for i in run.xml -blx.bib aux bbl blg brf log lof lot lol out tcp toc tps bak backup pdfsync synctex.gz; do find -name *.$$i -exec rm {} + ; done - @find -name *.*~ -exec rm {} + + @for i in run.xml -blx.bib aux bbl blg brf log lof lot lol out tcp toc tps bak backup pdfsync synctex.gz; do find -name *.$$i -exec rm -f {} + ; done + @find -name *.*~ -exec rm -f {} + cleanall: clean @rm *.pdf