2024-01-01 16:11:54 -06:00
|
|
|
all: plugin
|
|
|
|
ldd ../gocui.so
|
|
|
|
|
2024-01-13 13:30:13 -06:00
|
|
|
plugin:
|
|
|
|
GO111MODULE=off go build -v -buildmode=plugin -o ../gocui.so
|
|
|
|
|
2024-01-01 16:11:54 -06:00
|
|
|
goget:
|
|
|
|
go get -v -t -u
|
|
|
|
|
|
|
|
objdump:
|
|
|
|
objdump -t ../gocui.so |less
|
|
|
|
|
|
|
|
log:
|
|
|
|
reset
|
|
|
|
tail -f /tmp/witgui.* /tmp/guilogfile
|
2024-01-08 20:52:10 -06:00
|
|
|
|
|
|
|
cleanbuild:
|
|
|
|
go build -v -x -buildmode=plugin -o ../nocui.so
|
|
|
|
|
|
|
|
check-git-clean:
|
|
|
|
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)
|
|
|
|
|
|
|
|
redomod:
|
|
|
|
rm -f go.*
|
|
|
|
GO111MODULE= go mod init
|
|
|
|
GO111MODULE= go mod tidy
|