diff options
-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\")" |