fix build
This commit is contained in:
parent
2da89882e5
commit
0383207f72
20
Makefile
20
Makefile
|
@ -1,10 +1,24 @@
|
|||
.PHONY: debian
|
||||
|
||||
VERSION = $(shell git describe --tags)
|
||||
BUILDTIME = $(shell date +%Y.%m.%d)
|
||||
|
||||
all: build debian
|
||||
# GO111MODULE=off go build -o build main.go
|
||||
all: build
|
||||
@echo fixme
|
||||
|
||||
build: nocui gocui andlabs
|
||||
build:
|
||||
GO111MODULE=off go build \
|
||||
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||
|
||||
verbose:
|
||||
GO111MODULE=off go build -v -x \
|
||||
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||
|
||||
install:
|
||||
GO111MODULE=off go install \
|
||||
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||
|
||||
build:
|
||||
|
||||
goimports:
|
||||
goimports -w *.go
|
||||
|
|
Loading…
Reference in New Issue