diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -14,27 +14,25 @@ vet: build: echo "build it!" + touch resources/blank.so -rm resources/*.so -mkdir resources/ - cp -a ~/go/src/go.wit.com/toolkits/*/*.so resources/ + -cp -a ~/go/src/go.wit.com/toolkits/*/*.so resources/ + touch resources/blank.so GO111MODULE=off go build \ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" install: goimports + touch resources/blank.so -rm resources/*.so - cp -a ~/go/src/go.wit.com/toolkits/*/*.so resources/ + -cp -a ~/go/src/go.wit.com/toolkits/*/*.so resources/ + touch resources/blank.so GO111MODULE=off go install \ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${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 - go mod edit -go=1.20 - curl-help: curl --silent http://localhost:9419/help |
