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-04-07 17:21:50 +02:00

16 lines
320 B
Makefile

NAME = rapport
TEX = $(NAME).tex
SRC = $(TEX)
PDF = $(TEX:.tex=.pdf)
TEXMK = latexmk -lualatex
all: $(PDF)
$(PDF): $(SRC)
@$(TEXMK) $(TEX)
$(TEXMK) $(FLAGS) $(TEX)
clean:
rm -rf _minted-$(NAME)/ $(PDF) $(NAME).aux $(NAME).log $(NAME).out \
$(NAME).toc $(NAME).fdb_latexmk $(NAME).fls $(NAME).synctex.gz