autotypist/Makefile

45 lines
972 B
Makefile
Raw Normal View History

2024-02-22 15:28:08 -06:00
# this makefile assumes you want to build in this directory
# and are developing so it sets export GO111MODULE=off
all: build
2024-02-16 17:55:53 -06:00
reset
./autotypist
2024-02-22 15:28:08 -06:00
build:
echo "build it!"
@# copy the toolkits into the binary during debugging
-rm resources/*.so
cp -a ~/go/src/go.wit.com/toolkits/*.so resources/
GO111MODULE=off go build -v -x
2024-02-16 17:55:53 -06:00
only-me: build
reset
2024-02-15 22:46:35 -06:00
./autotypist --only-me
stderr: build
echo "writing to /tmp/autotypist.log"
./autotypist >/tmp/autotypist.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
./autotypist --gui gocui >/tmp/autotypist.log 2>&1
install:
rm -f ~/go/src/go.wit.com/toolkits/*.so
go install -v -x
autotypist
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