From 7a4c3ce2098bfd4c0a659eb37a4ac9f9fd872012 Mon Sep 17 00:00:00 2001 From: kballou Date: Mon, 30 Jan 2017 18:32:00 -0700 Subject: Refactor phony targets Move phony target definitions closer to task definitions --- blag/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blag/Makefile b/blag/Makefile index 00d0a67..de8701e 100644 --- a/blag/Makefile +++ b/blag/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/ -- cgit v1.2.1