10 lines
142 B
Makefile
10 lines
142 B
Makefile
|
|
||
|
.phony: all
|
||
|
all: plugin
|
||
|
|
||
|
.phony: plugin
|
||
|
plugin:
|
||
|
export GOPROXY=http://goproxy.cn,direct
|
||
|
go build -buildmode=plugin -o notify.so notify.go
|
||
|
|