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
Raw Normal View History

2020-02-25 01:47:25 +01:00
default:
.PHONY: clean
clean:
2020-10-11 16:47:38 +02:00
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
2020-03-07 15:34:40 +01:00
docker run --rm -t -v ${PWD}:/slides astefanutti/decktape -s 1920x1200 $< $@
%/handout.pdf: %/handout.odt
libreoffice --headless --convert-to pdf "$<" --outdir $(@D)