summaryrefslogtreecommitdiff
path: root/vietnam/talk/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vietnam/talk/Makefile')
-rw-r--r--vietnam/talk/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/vietnam/talk/Makefile b/vietnam/talk/Makefile
new file mode 100644
index 0000000..b4f4298
--- /dev/null
+++ b/vietnam/talk/Makefile
@@ -0,0 +1,11 @@
+pandoc_sources := $(wildcard *.mkd)
+presentations = $(pandoc_sources:%.mkd=%/index.html)
+#aux = slidy.css
+
+all: $(presentations)
+
+# TODO: use --offline when working with Debian packaging of Pandoc
+$(presentations): %/index.html : %.mkd
+ mkdir -p $(dir $@)
+ pandoc --from Markdown --to Slidy -o $@ -s $<
+ perl -i -pe 's{http://www.w3.org/Talks/Tools/Slidy/slidy.(css|js)(\.gz)?}{../slidy.min.$$1}g' $@