40 lines
771 B
Makefile
40 lines
771 B
Makefile
# to build by hand export GO111MODULE=off
|
|
|
|
all: build
|
|
reset
|
|
./submit-patchset
|
|
|
|
only-me: build
|
|
reset
|
|
./submit-patchset --only-me
|
|
|
|
stderr: build
|
|
echo "writing to /tmp/submit-patchset.log"
|
|
./submit-patchset >/tmp/submit-patchset.log 2>&1
|
|
|
|
goimports:
|
|
goimports -w *.go
|
|
# // to globally reset paths:
|
|
# // gofmt -w -r '"go.wit.com/gui/gadgets" -> "go.wit.com/lib/gadgets"' *.go
|
|
|
|
gocui: build
|
|
reset
|
|
./submit-patchset --gui gocui >/tmp/submit-patchset.log 2>&1
|
|
|
|
build:
|
|
echo "build it!"
|
|
GO111MODULE=off go build -v -x
|
|
|
|
install:
|
|
go install -v -x
|
|
submit-patchset
|
|
|
|
check-git-clean:
|
|
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)
|
|
|
|
redomod:
|
|
rm -f go.*
|
|
GO111MODULE= go mod init
|
|
GO111MODULE= go mod tidy
|
|
|