This repository has been archived on 2023-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
iaj/TP2/Rapport/Makefile
2023-03-19 20:32:28 +01:00

15 lines
342 B
Makefile

NAME = rapport
TEX = $(NAME).tex
SRC = $(TEX)
PDF = $(TEX:.tex=.pdf)
# FLAGS = -shell-escape # pour minted
all: $(PDF)
$(PDF): $(SRC)
@pdflatex $(FLAGS) $(TEX)
pdflatex $(FLAGS) $(TEX)
clean:
rm -rf _minted-$(NAME)/ $(PDF) $(NAME).aux $(NAME).log $(NAME).out \
$(NAME).toc $(NAME).fdb_latexmk $(NAME).fls $(NAME).synctex.gz