Skip to content

Commit

Permalink
Update latex build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianCassayre committed Jul 7, 2022
1 parent 34a7733 commit 7fa1118
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions thesis/report/.gitignore → thesis/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@
*.xml
svg-inkscape
*.pdf
*.nav
*.out
*.snm
*.lol
8 changes: 4 additions & 4 deletions thesis/presentation/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
LATEXCMD = pdflatex --shell-escape presentation.tex

fast:
$(LATEXCMD)

thesis:
$(LATEXCMD) && $(LATEXCMD)

fast:
$(LATEXCMD)

clean:
rm -rf *.aux *.bbl *.bcf *.blg *.lof *.log *.lot *.toc *.xml svg-inkscape *.pdf
rm -rf *.aux *.bbl *.bcf *.blg *.lof *.log *.lot *.toc *.xml svg-inkscape *.pdf *.nav *.out *.snm
8 changes: 4 additions & 4 deletions thesis/report/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
LATEXCMD = pdflatex --shell-escape thesis.tex
BIBER = biber thesis

fast:
$(LATEXCMD)

thesis:
$(LATEXCMD) && $(BIBER) && $(LATEXCMD)

fast:
$(LATEXCMD)

bibliography:
$(BIBER)

clean:
rm -rf *.aux *.bbl *.bcf *.blg *.lof *.log *.lot *.toc *.xml svg-inkscape *.pdf
rm -rf *.aux *.bbl *.bcf *.blg *.lof *.log *.lot *.toc *.xml svg-inkscape *.pdf *.out *.lol

0 comments on commit 7fa1118

Please sign in to comment.