wt-tut-presentations/Makefile

20 lines
512 B
Makefile

.PHONY: all
all: build/prepared build/presentation_template.pdf build/presentation_2025-11-07.pdf
build/presentation_template.pdf:
TEXINPUTS=./lib/cel-slides-template-2025:$$TEXINPUTS latexmk src/template/presentation.tex
mv build/presentation.pdf $@
build/presentation_2025-11-07.pdf:
TEXINPUTS=./lib/cel-slides-template-2025:$$TEXINPUTS latexmk src/2025-11-07/presentation.tex
mv build/presentation.pdf $@
build/prepared:
mkdir -p build build
touch build/prepared
.PHONY: clean
clean:
rm -rf build