Revert "Cleaned doc folder as it was unused"

This reverts commit 8716f2a01e.
This commit is contained in:
Théo DURR
2022-12-15 22:29:55 +01:00
parent 8716f2a01e
commit 6ce70abae5
116 changed files with 5882 additions and 0 deletions

View File

@ -0,0 +1,18 @@
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)