1
0
miroir de https://github.com/ae-utbm/sith.git synchronisé 2025-12-16 12:53:23 +00:00
Fichiers
Sith/doc/TO_Skia_LoJ/slides/Makefile
2017-01-15 22:57:35 +01:00

19 lignes
282 B
Makefile

LATEX := pdflatex
TARGET := slide.pdf
.PHONY: all clean distclean
all: $(TARGET) clean
%.pdf: %.tex
echo "Building pdf"
$(LATEX) --shell-escape $<
rm -f $@
$(LATEX) --shell-escape $<
clean:
rm -f *.log *.nav *.snm *.aux *.out *.toc *.pyg
distclean: clean
rm -f $(TARGET)