3d-interface-rapport/slides/Makefile

23 lines
449 B
Makefile
Raw Permalink Normal View History

2015-08-26 09:11:58 +02:00
TEXC = latexmk -lualatex -output-directory=build
.PHONY: FORCE
2015-09-21 09:44:35 +02:00
all: sk build/main.pdf
2015-08-26 09:11:58 +02:00
pdf: build/main.pdf
2015-09-21 09:44:35 +02:00
sk:
cd ../common && make
2015-08-26 09:11:58 +02:00
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