summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index e343c64..0000000
--- a/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-WEB_HOST ?= alchemy.grimoire.ca
-WEB_ROOT ?= /var/www/grimoire.ca
-
-BROWSER ?= open
-
-.html: clean
- markdoc build
-
-.PHONY: html
-html: .html
-
-.PHONY: clean
-clean:
- $(RM) -r .html
- $(RM) -r .tmp
-
-.PHONY: publish
-publish: html
- rsync -zav --delete-after .html/ $(WEB_HOST):$(WEB_ROOT)
-
-.PHONY: open
-open: html
- $(BROWSER) .html/index.html