21 lines
297 B
Makefile
21 lines
297 B
Makefile
all: plugin
|
|
ldd ../gocui.so
|
|
|
|
plugin:
|
|
GO111MODULE=off go build -v -buildmode=plugin -o ../gocui.so
|
|
|
|
objdump:
|
|
objdump -t ../gocui.so |less
|
|
|
|
log:
|
|
reset
|
|
tail -f /tmp/witgui.* /tmp/guilogfile
|
|
|
|
goimports:
|
|
goimports -w *.go
|
|
|
|
redomod:
|
|
rm -f go.*
|
|
GO111MODULE= go mod init
|
|
GO111MODULE= go mod tidy
|