autotypist/Makefile

90 lines
2.3 KiB
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-11-13 21:30:42 -06:00
# reset
# ./autotypist
2024-02-16 17:55:53 -06:00
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 \
-ldflags " \
-X main.VERSION=${VERSION}"
2024-02-22 15:28:08 -06:00
2024-02-29 17:29:19 -06:00
vet:
GO111MODULE=off go vet
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
debian:
2024-11-16 00:11:38 -06:00
go-deb --auto --repo go.wit.com/apps/autotypist
# build then run with gui in libcurses
console: build
reset
./autotypist --gui gocui >/tmp/autotypist.log 2>&1
install:
2024-11-07 03:09:46 -06:00
-rm resources/*.so
cp -a ~/go/src/go.wit.com/toolkits/*.so resources/
GO111MODULE=off go install -v -x \
-ldflags " \
-X main.VERSION=${VERSION}"
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
curl-help:
curl --silent http://localhost:9419/help
# only show repos that git reports as dirty
curl-list-dirty:
curl --silent http://localhost:9419/list?onlydirty=true
# only show repos that need to be merged to the master branch
curl-list-changed:
curl --silent http://localhost:9419/list?perfect=false
# include repos that you probably can't git push commits
curl-list-include-readonly:
curl --silent http://localhost:9419/list?readonly=true
# list every repo found
curl-gitpull-everypackage:
curl --silent http://localhost:9419/gitpull
curl-gitpull-helloworld:
curl --silent http://localhost:9419/gitpull?repo=go.wit.com/apps/helloworld
curl-gitpull-basicworld:
curl --silent http://localhost:9419/gitpull?repo=go.wit.com/apps/basicworld
curl-release-helloworld:
curl --silent http://localhost:9419/release?repo=go.wit.com/apps/helloworld
curl-release-gowit:
curl --silent http://localhost:9419/release?repo=go.wit.com/lib/gui/gowit
2024-11-13 12:29:25 -06:00
file-for-go.wit.com:
curl --silent http://localhost:9419/goweblist?readonly=true
curl --silent http://localhost:9419/goweblist?readonly=true |sort > ~/go.wit.com.versions