From: Don Armstrong Date: Sun, 11 Dec 2016 20:16:27 +0000 (-0800) Subject: both deployments are phony X-Git-Url: https://git.donarmstrong.com/?p=catcam.git;a=commitdiff_plain;h=1d13f68523b5a01a690e03ab40b777a7112f7161 both deployments are phony --- diff --git a/Makefile b/Makefile index 06d8d06..5d99f8b 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,12 @@ WEB_DIR=/srv/catcam/html -include variables.mk +deploy: deploy-camera deploy-server + deploy-camera: motion_detected.sh scp $^ don@$(CAMERA_HOST):.; deploy-server: index.cgi scp $^ don@$(WEB_HOST):$(WEB_DIR)/.; -.PHONY: deploy +.PHONY: deploy-camera deploy-server