49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
VERSION = $(shell git describe --tags)
|
|
BUILDTIME = $(shell date +%Y.%m.%d_%H%M)
|
|
|
|
info: install
|
|
# forge dirty
|
|
# forge examine
|
|
forge clean
|
|
|
|
vet:
|
|
@GO111MODULE=off go vet
|
|
@echo this go binary package builds okay
|
|
|
|
verbose:
|
|
GO111MODULE=off go build -v -x \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
install: goimports vet
|
|
GO111MODULE=off go install \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
goimports:
|
|
reset
|
|
goimports -w *.go
|
|
@# // to globally reset paths:
|
|
@# // gofmt -w -r '"go.wit.com/gui/gadgets" -> "go.wit.com/lib/gadgets"' *.go
|
|
|
|
gocui: install
|
|
forge --gui gocui >/tmp/forge.log 2>&1
|
|
|
|
patches-make: install
|
|
forge --patchset "from makefile 2"
|
|
|
|
patches-list-2233: install
|
|
forge --list-patchset --connect "http://go.wit.com:2233/"
|
|
|
|
patches-list: install
|
|
forge --list-patchset
|
|
|
|
patches-apply-230233: install
|
|
forge --apply /tmp/2024.12.27.230233.submitted.pb
|
|
|
|
restart:
|
|
reset
|
|
-rm ~/go/src/repos.pb
|
|
make private
|
|
|
|
identify:
|
|
autogenpb --identify /home/jcarr/go/src/repos.pb
|