diff options
author | Stefan Kangas <skangas@skangas.se> | 2011-01-11 10:19:47 +0100 |
---|---|---|
committer | Stefan Kangas <skangas@skangas.se> | 2011-01-11 10:19:47 +0100 |
commit | a12c40383fef2c31cd2c50d22dbfe037a7e4492f (patch) | |
tree | 5a6aea20e19fc8a0e7e4ef74cae17ec000efd287 /Makefile | |
parent | 48a9f46eaab9a9d56c58a610a2dae962e35edf6a (diff) |
Add a Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
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\")" |