1
0
mirror of https://github.com/ae-utbm/sith.git synced 2025-01-13 02:21:14 +00:00
Sith/doc/TO_Skia_LoJ/slides/Makefile

19 lines
282 B
Makefile
Raw Normal View History

2017-01-12 12:22:35 +00:00
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)