summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fa02b3f..5ec4715 100644
--- a/Makefile
+++ b/Makefile
@@ -7,9 +7,12 @@ server: clean
deps:
brew install hugo
-ppublish: deps build
+build: clean
+ hugo
+
+publish: build
gsutil -m rsync -R _site/ gs://b.lumberjaph.net
gsutil -m acl ch -u AllUsers:R -R gs://b.lumberjaph.net/
gsutil -m web set -m index.html -e 404.html gs://b.lumberjaph.net
-.PHONY: clean server deps publish
+.PHONY: build clean server deps publish