infos/Statuten/Makefile

11 lines
281 B
Makefile

all: pdf html
pdf: statuten.md
pandoc -f markdown -t latex -o statuten.pdf -Vgeometry:margin=2cm -Vpapersize=a4 -Vlang=de statuten.md
html: statuten.md
pandoc -f markdown -t html5 -o statuten.html --standalone -Vlang=de statuten.md
clean:
rm -rf statuten.pdf statuten.html