3d-interface-rapport/slides/Makefile

18 lines
398 B
Makefile
Raw Normal View History

2015-08-26 09:11:58 +02:00
TEXC = latexmk -lualatex -output-directory=build
.PHONY: FORCE
pdf: build/main.pdf
build/%.pdf: %.tex FORCE
$(TEXC) -latexoption=-shell-escape $<
2015-09-18 16:33:58 +02:00
# cp build/main.pdf build/main.tmp.pdf
# gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH -sOutputFile=build/main.pdf build/main.tmp.pdf
# rm build/main.tmp.pdf
2015-08-26 09:11:58 +02:00
clean: FORCE
$(TEXC) -c
clean_all: FORCE
$(RM) -fr build