aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2017-01-30 18:32:00 -0700
committerkballou <kballou@devnulllabs.io>2017-09-02 19:31:45 -0600
commitbb68b67d0badbcf22caf685067a3a0804bac68ac (patch)
tree952227956ea33bc848a8b6a725b79603a83c19b9
parent6858a2a42dc4556837b2d1e14efa95200c7e09d3 (diff)
downloadblog.kennyballou.com-bb68b67d0badbcf22caf685067a3a0804bac68ac.tar.gz
blog.kennyballou.com-bb68b67d0badbcf22caf685067a3a0804bac68ac.tar.xz
Refactor phony targets
Move phony target definitions closer to task definitions
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 00d0a67..de8701e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,10 @@
-.PHONY: build deploy
OUTPUT=`pwd`/../www/blog/
all: build
+.PHONY: build
build:
@hugo -d ${OUTPUT}
+.PHONY: deploy
deploy: build
@rsync -avz ${OUTPUT} kennyballou.com:/srv/www/blog/