Modified the find command to run on all Unixes.

pull/3/head
Michael Bredel 6 years ago
parent f86301cb8a
commit 4c968a2c2f
  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 -f {} + ; done
@find -name *.*~ -exec rm -f {} +
@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