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) +