minor
This commit is contained in:
parent
17cff379fa
commit
9babe64e41
7
Makefile
7
Makefile
|
@ -1,7 +1,7 @@
|
|||
VERSION = $(shell git describe --tags)
|
||||
BUILDTIME = $(shell date +%Y.%m.%d)
|
||||
|
||||
all: andlabs.so
|
||||
all: goimports vet andlabs.so
|
||||
|
||||
andlabs.so:
|
||||
GO111MODULE=off go build -v -buildmode=plugin -o andlabs.so \
|
||||
|
@ -21,6 +21,11 @@ goget:
|
|||
goimports:
|
||||
goimports -w *.go
|
||||
|
||||
vet:
|
||||
@GO111MODULE=off go vet
|
||||
@echo this go plugin builds okay
|
||||
|
||||
|
||||
redomod:
|
||||
rm -f go.*
|
||||
goimports -w *.go
|
||||
|
|
Loading…
Reference in New Issue