Added slides and gitignore

This commit is contained in:
Thomas FORGIONE
2015-08-26 09:11:58 +02:00
parent 771ddb64d5
commit dcef257b76
25 changed files with 238 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
TEXC = latexmk -lualatex -output-directory=build
.PHONY: FORCE
pdf: build/rapport.pdf
build/%.pdf: %.tex FORCE
$(TEXC) -latexoption=-shell-escape $<
clean: FORCE
$(TEXC) -c
clean_all: FORCE
$(RM) -fr build