vpn-status/Makefile

11 lines
303 B
Makefile
Raw Normal View History

2013-10-03 22:41:25 +00:00
vpn-status: server.go
go build
deploy: vpn-status
strip vpn-status
2014-02-02 16:40:29 +00:00
rsync --exclude 'assets/tinc-graph.*' -avcz -e ssh nodes.json html assets vpn-status deploy@higgsboson.tk:/srv/http/vpn-status
2013-11-02 18:59:45 +00:00
ssh -t higgsboson.tk "sudo systemctl restart vpn-status"
2013-10-03 22:41:25 +00:00
.PHONY: clean
clean:
rm -rf vpn-status $(OBJ)