Initial commit

This commit is contained in:
Thomas FORGIONE
2015-07-09 16:48:04 +02:00
commit 771ddb64d5
3 changed files with 109 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