mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
19 lines
282 B
Makefile
19 lines
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)
|