-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (28 loc) · 725 Bytes
/
Makefile
File metadata and controls
28 lines (28 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
all:
xelatex main.tex;
xelatex main.tex;
bibtex main || true;
xelatex main.tex;
xelatex main.tex;
clean:
@echo Cleaning up......
-find -name '*.aux' -exec rm -f {} \;
-find -name '*.bak' -exec rm -f {} \;
-find -name '*.dvi' -exec rm -f {} \;
-find -name '*~' -exec rm -f {} \;
-find -name '#*#' -exec rm -f {} \;
-find -name 'semantic.cache' -exec rm -f {} \;
-find -name '*.log' -exec rm -f {} \;
-rm -f *.bbl *.blg *.log *.out *.ps *.thm *.toc *.toe *.lof *.lot
-rm -f *.loa *.aen
-rm -f *.html *.css *.scm *.hlog
-rm -f _region_.tex
-rm -f -rf auto
-rm -f *.fen
-rm -f *.ten
-rm -rf ./body/auto
-rm -rf ./reference/auto
-rm -rf ./setup/auto
-rm -rf ./preface/auto
-rm -rf *.prv
@echo All done.