From 02a191a6e1620d71aa0c590da2511ee9b6115e66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 4 Oct 2013 00:41:25 +0200 Subject: [PATCH] add Makefile for deployment --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2e305e0 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +vpn-status: server.go + go build +deploy: vpn-status + strip vpn-status + rsync -avcz -e ssh nodes.json html assets vpn-status higgsboson.tk:/home/joerg/vpn-status + +.PHONY: clean +clean: + rm -rf vpn-status $(OBJ) +