Changed the Makefile to force removement of files when using the clean-target.

pull/3/head
Michael Bredel 6 years ago
parent e63da6992f
commit bcdd66e691
  1. 4
      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

Loading…
Cancel
Save