# this makefile assumes you want to build in this directory # and are developing so it sets export GO111MODULE=off all: build reset ./autotypist 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 vet: GO111MODULE=off go vet only-me: build reset ./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 # build then run with gui in libcurses console: 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 curl-help: curl --silent http://localhost:9419/help curl-list: curl --silent http://localhost:9419/list?perfect=false curl-list-readonly: curl --silent http://localhost:9419/list?readonly=true 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-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