summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2016-02-09 10:07:44 +0100
committerLinus Nordberg <linus@nordberg.se>2016-02-09 10:07:44 +0100
commit2a25a99fe47a00a75af29a42767e67c018740eae (patch)
tree3796033c40839e41a436c56b4ac6e34bf6d242fd /Makefile
Initial revision.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..218a7df
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+HTML = index.html README.html scanning.html
+
+all: html
+
+html: $(HTML)
+
+publish: $(HTML) index.org doc/tnc15talk.pdf
+ scp $^ devp.ct.nordu.net:/var/www/
+
+%.html: %.md
+ markdown $< > $@