SNOUG-Vel/src/Makefile

76 lines
1.2 KiB
Makefile
Raw Normal View History

2022-08-26 15:59:47 -06:00
# Makefile
2022-08-23 12:15:31 -06:00
all:
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
-no-pdf \
SNOUG.tex
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
-no-pdf \
SNOUG.tex
biber SNOUG
2022-08-23 12:15:31 -06:00
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
-no-pdf \
SNOUG.tex
makeindex SNOUG
2022-08-28 22:27:31 -06:00
biber SNOUG
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
-no-pdf \
SNOUG.tex
2022-08-23 12:15:31 -06:00
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
SNOUG.tex
2022-09-04 12:14:00 -06:00
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
Cover.tex
2022-08-23 12:15:31 -06:00
2022-09-04 11:16:10 -06:00
cover:
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
Cover.tex
2022-08-23 12:15:31 -06:00
clean:
rm -fr _minted-*
rm -f *.aux
2022-09-04 11:16:10 -06:00
rm -f *.bib.bak
rm -f *.bib.sav.tmp
rm -f *.bbl
rm -f *.bcf
rm -f *.blg
2022-08-29 17:06:06 -06:00
rm -f *.glg
2022-08-23 12:15:31 -06:00
rm -f *.glo
2022-08-28 19:43:23 -06:00
rm -f *.gls
2022-08-29 17:06:06 -06:00
rm -f *.glstex
2022-08-23 12:15:31 -06:00
rm -f *.idx
2022-08-28 19:43:23 -06:00
rm -f *.ilg
rm -f *.ind
rm -f *.ist
2022-08-23 12:15:31 -06:00
rm -f *.lof
rm -f *.log
2022-08-28 19:43:23 -06:00
rm -f *.lol
rm -f *.lot
2022-08-23 12:15:31 -06:00
rm -f *.out
rm -f *.run.xml
2022-08-23 12:15:31 -06:00
rm -f *.toc
rm -f *.xdv
rm -f *.pdf
2022-08-29 17:06:06 -06:00
rm -f *.pyg
2022-08-23 12:15:31 -06:00