From: Heiko Schlittermann (HS12-RIPE) Date: Tue, 1 Nov 2016 21:33:57 +0000 (+0100) Subject: Use multimarkdown to convert .md -> .html X-Git-Url: https://git.exim.org/buildfarm-client-wiki.git/commitdiff_plain/30d02f8849d9889b5c5b7fce58613bb623ce6fb0 Use multimarkdown to convert .md -> .html --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2d19fc7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.html diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1227631 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +INPUT = $(wildcard *.md) +OUTPUT = $(INPUT:.md=.html) + +all: $(OUTPUT) +clean: +distclean: clean + -rm -f $(OUTPUT) + +%.html: %.md + multimarkdown $< >$@