aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorStefan Kangas <skangas@skangas.se>2011-01-11 10:19:47 +0100
committerStefan Kangas <skangas@skangas.se>2011-01-11 10:19:47 +0100
commita12c40383fef2c31cd2c50d22dbfe037a7e4492f (patch)
tree5a6aea20e19fc8a0e7e4ef74cae17ec000efd287 /Makefile
parent48a9f46eaab9a9d56c58a610a2dae962e35edf6a (diff)
Add a Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f683cb6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+EMACS=emacs -q --no-site-file
+
+usage:
+ @echo "usage: make fripost-web will publish the site to publish/"
+ @echo " make usage displays this message."
+ @echo
+
+all:
+ make fripost-web
+
+fripost-web:
+ $(EMACS) -batch -L . \
+ -l "fripost-web.el" \
+ -eval "(org-publish-project \"fripost-web\")"