wk 44 additions
This commit is contained in:
10
Makefile
10
Makefile
@ -9,6 +9,12 @@ Main.pdf: clean
|
||||
$(PDF_CMD) Main.tex
|
||||
$(PDF_CMD) Main.tex
|
||||
|
||||
clean:
|
||||
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl Main.pdf
|
||||
|
||||
clean: SHELL:=/bin/bash
|
||||
clean:
|
||||
@rm_exts=('*.synctex.gz' '*.ps' '*.dvi' '*.aux' '*.toc' '*.idx' '*.ind' '*.ilg' '*.log' '*.out' '*.brf' '*.blg' '*.bbl'); \
|
||||
for i in "$${rm_exts[@]}"; \
|
||||
do \
|
||||
find . -name "$$i" -exec rm {} \;; \
|
||||
done \
|
||||
|
||||
|
Reference in New Issue
Block a user