From c5b5a5a33ea4e6a4c59ce18b3358195fd654663e Mon Sep 17 00:00:00 2001 From: Siri Reiter Date: Wed, 14 Oct 2015 18:03:08 +0200 Subject: Jonas made a makefile. --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1bf46a3 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +infiles = index.mdwn india.mdwn + +all: $(infiles:%.mdwn=%.html) + +$(infiles:%.mdwn=%.html): %.html: %.mdwn + pandoc -f markdown -t html -o $@ $< + +clean: + rm -f *.html -- cgit v1.2.3