Files
3d-interface-rapport/Makefile
T
Thomas FORGIONE 771ddb64d5 Initial commit
2015-07-09 16:48:04 +02:00

15 lines
214 B
Makefile

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