closer to purer plugin testing
This commit is contained in:
parent
9d965ee05a
commit
6f08f22ca8
11
Makefile
11
Makefile
|
@ -1,13 +1,16 @@
|
|||
VERSION = $(shell git describe --tags)
|
||||
BUILDTIME = $(shell date +%Y.%m.%d)
|
||||
|
||||
all: plugin
|
||||
all: andlabs.so
|
||||
|
||||
plugin:
|
||||
GO111MODULE=off go build -v -x -buildmode=plugin -o andlabs.so
|
||||
andlabs.so:
|
||||
GO111MODULE=off go build -v -buildmode=plugin -o andlabs.so \
|
||||
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||
|
||||
install:
|
||||
rm -f andlabs.so
|
||||
go build -buildmode=plugin -o ~/go/lib/andlabs-${VERSION}.so
|
||||
go build -v -buildmode=plugin -o ~/go/lib/andlabs-${VERSION}.so \
|
||||
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||
|
||||
goget:
|
||||
GO111MODULE="off" go get -v -t -u
|
||||
|
|
Loading…
Reference in New Issue