This repository has been archived on 2022-03-27. You can view files and clone it, but cannot push or open issues/pull-requests.
presis/Makefile

19 lines
415 B
Makefile

default:
.PHONY: clean
clean:
rm -f \
*/*/handout.pdf \
latex/*/index.pdf \
revealjs/*/index.html \
revealjs/*/index.pdf
revealjs/%/index.html: revealjs/%/*.md
python3 revealjs/build.py $@
revealjs/%/index.pdf: revealjs/%/index.html
docker run --rm -t -v ${PWD}:/slides astefanutti/decktape -s 1920x1200 $< $@
%/handout.pdf: %/handout.odt
libreoffice --headless --convert-to pdf "$<" --outdir $(@D)