infos/Code of Conduct/Makefile

11 lines
241 B
Makefile
Raw Permalink Normal View History

2017-12-21 12:43:35 +01:00
all: pdf html
pdf: coc.md
pandoc -f markdown -t latex -o coc.pdf -Vgeometry:margin=2cm -Vpapersize=a4 -Vlang=de coc.md
html: coc.md
pandoc -f markdown -t html5 --standalone -o coc.html -Vlang=de coc.md
clean:
rm -rf coc.pdf coc.html