mirror of
https://github.com/nbd-wtf/satdress.git
synced 2024-11-11 16:30:35 +00:00
8 lines
359 B
Makefile
8 lines
359 B
Makefile
satdress: $(shell find . -name "*.go") $(shell find . -name "*.html") $(shell find . -name "*.css") go.mod
|
|
CC=$$(which musl-gcc) go build -ldflags='-s -w -linkmode external -extldflags "-static"' -o ./satdress
|
|
|
|
deploy: satdress
|
|
ssh root@turgot 'systemctl stop payaddress'
|
|
scp satdress turgot:satdress/satdress
|
|
ssh root@turgot 'systemctl start payaddress'
|