mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-29 23:00:33 +00:00
also add a small delay before blockconfirm also, for locked accounts, use iptables reject with the specific port
13 lines
206 B
Makefile
13 lines
206 B
Makefile
OUT_GO=blocknotify-dcr
|
|
OUTPUT=blocknotify-dcr
|
|
|
|
all:
|
|
rm -f $(OUT_GO)
|
|
go build
|
|
|
|
install: all
|
|
strip -s $(OUT_GO)
|
|
killall -9 $(OUTPUT) || echo ok
|
|
mv $(OUT_GO) ../bin/$(OUTPUT)
|
|
sh -c "../bin/$(OUTPUT) &"
|
|
|