1
0
Mirror von https://github.com/ae-utbm/sith.git synchronisiert 2025-10-17 10:18:29 +00:00
Files
Sith/doc/TO_Skia_LoJ/slides/Makefile
2017-01-15 22:57:35 +01:00

19 Zeilen
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)