diff options
| author | Siri Reiter <siri@jones.dk> | 2015-10-14 18:03:08 +0200 |
|---|---|---|
| committer | Siri Reiter <siri@jones.dk> | 2015-10-14 18:03:08 +0200 |
| commit | c5b5a5a33ea4e6a4c59ce18b3358195fd654663e (patch) | |
| tree | ca70028f1fd4dd26ff29323805f55c572e6543e5 | |
| parent | 77535a0ceb5427299d73f537bcdcbf58bb9305db (diff) | |
Jonas made a makefile.
| -rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
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 |
