11 lines
209 B
Makefile
11 lines
209 B
Makefile
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)
|
|
|