diff options
| author | Jeff Carr <[email protected]> | 2025-03-10 04:36:35 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-10 04:36:35 -0500 |
| commit | f9515280cf8ee5dd71be3b8e749e6405c4e77ca6 (patch) | |
| tree | 6290b07ea07284ec0234146cb3a193a7dbd6c80c /Makefile | |
| parent | 30a5eb56a210c28feca0098fd9e6dc340f494b9f (diff) | |
make admin mode
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -6,9 +6,7 @@ BUILDTIME = $(shell date +%Y.%m.%d) # create the go.mod and go.sum if this is a brand new repo REDOMOD = $(shell if [ -e go.sum ]; then echo go.sum exists; else GO111MODULE= go mod init; GO111MODULE= go mod tidy; fi) -all: build - ./virtigo --version - @#./virtigo --gui gocui +all: install @echo build worked build: goimports vet @@ -20,9 +18,12 @@ verbose: -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" install: - GO111MODULE=off go install \ + GO111MODULE=off go install -v -x \ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" +andlabs: verbose + ./virtigo --gui andlabs + # makes a .deb package debian: rm -f ~/incoming/virtigo*deb |
