fix build
This commit is contained in:
parent
ee8a0897e1
commit
b322484e48
29
Makefile
29
Makefile
|
@ -1,23 +1,26 @@
|
||||||
|
.PHONY: build
|
||||||
|
|
||||||
VERSION = $(shell git describe --tags)
|
VERSION = $(shell git describe --tags)
|
||||||
|
BUILDTIME = $(shell date +%Y.%m.%d)
|
||||||
|
|
||||||
# create the go.mod and go.sum if this is a brand new repo
|
all: build
|
||||||
# REDOMOD = $(shell if [ -e go.mod ]; then echo go.mod; else echo no go mod; fi)
|
|
||||||
REDOMOD = $(shell if [ -e go.sum ]; then echo go.sum exists; else GO111MODULE= go mod init; GO111MODULE= go mod tidy; fi)
|
|
||||||
|
|
||||||
all:
|
|
||||||
GO111MODULE=off go build -v -x -ldflags "-X main.Version=${VERSION} -X gui.GUIVERSION=${VERSION}"
|
|
||||||
./virtigod --version
|
./virtigod --version
|
||||||
# sudo ./virtigod
|
|
||||||
|
|
||||||
# this is for release builds using the go.mod files
|
build:
|
||||||
release-build:
|
GO111MODULE=off go build \
|
||||||
@echo ${REDOMOD}
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||||
go build -v -ldflags "-X main.Version=${VERSION} -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}"
|
||||||
|
|
||||||
# makes a .deb package
|
# makes a .deb package
|
||||||
debian:
|
debian:
|
||||||
rm -f ~/incoming/virtigod*deb
|
go-deb --auto --repo go.wit.com/lib/daemons/virtigod
|
||||||
go-deb --no-gui --repo go.wit.com/lib/daemons/virtigod
|
|
||||||
|
|
||||||
goimports:
|
goimports:
|
||||||
goimports -w *.go
|
goimports -w *.go
|
||||||
|
|
Loading…
Reference in New Issue