-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (15 loc) · 779 Bytes
/
Makefile
File metadata and controls
18 lines (15 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FILE=main
.PHONY: clean fast clean
fast:
lualatex -interaction=nonstopmode -halt-on-error $(FILE).tex
lualatex -interaction=nonstopmode -halt-on-error $(FILE).tex
lualatex -interaction=nonstopmode -halt-on-error $(FILE).tex
lualatex -interaction=nonstopmode -halt-on-error $(FILE).tex
# sudo apt install tex4ht
# make4ht -u -f html5+unihtf+mathjax -d versao_html/ main.tex
make clean
clean:
rm -rf *.aux *.bbl *.toc *.out *.log *.nls *.nlo \
*.lof *.lot *.blg *.ilg *.synctex.gz *.4ct *.4tc *.dvi *.idv *.lg *.tmp *.xref *.fls *.fdb_latexmk
rm -rf */*.aux */*.bbl */*.toc */*.out */*.log \
*/*.nls */*.nlo */*.lof */*.lot */*.blg */*.ilg */*.synctex.gz */*.4ct */*.4tc */*.dvi */*.idv */*.lg */*.tmp */*.xref */*.fls */*.fdb_latexmk