summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cd224c4..45ad8ce 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,6 @@
VERSION = $(shell git describe --tags)
GUIVERSION = $(shell git describe --tags)
-# BUILDTIME = $(shell date +%Y.%m.%d)
BUILDTIME = $(shell date +%s)
all: install
@@ -11,7 +10,7 @@ go-build: goimports
GO111MODULE=off go build \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-verbose:
+build-verbose:
GO111MODULE=off go build -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
@@ -21,7 +20,6 @@ install: goimports
vet:
GO111MODULE=off go vet
-# this is how the mirrors.wit.com debian package is created
# make a .deb package
go-deb: