# ============================================================================= # Author: Simon-Pierre Boucher # Contact: contact@spboucher.ai # ============================================================================= TEX = main PDF = $(TEX).pdf .PHONY: all clean distclean all: $(PDF) $(PDF): $(TEX).tex preamble.tex references.bib sections/*.tex appendix/*.tex latexmk $(TEX).tex clean: latexmk -c $(TEX).tex distclean: latexmk -C $(TEX).tex