From a1cbe6dcd4639d70601c64bdc0e3ce7d91709955 Mon Sep 17 00:00:00 2001 From: Kenny Ballou Date: Wed, 5 Sep 2018 06:18:46 -0600 Subject: add deploy target to Makefile Signed-off-by: Kenny Ballou --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index abf2739..069ed01 100644 --- a/Makefile +++ b/Makefile @@ -52,3 +52,7 @@ $(BUILD_DIR)/%: $(STATIC_DIR)/% | $(BUILD_DIR) .PHONY: clean clean: -rm -r $(BUILD_DIR) + +.PHONY: deploy +deploy: clean all + aws s3 cp --recursive $(BUILD_DIR)/ s3://blog.kennyballou.com/ -- cgit v1.2.1