summaryrefslogtreecommitdiff
path: root/testSort/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-30 12:17:38 -0600
committerJeff Carr <[email protected]>2024-11-30 12:17:38 -0600
commitdc356e9d0fc6b05f50b01d141206f679ecda2de9 (patch)
treea875c8f8288f0a7292bac99176894a3b7fd07426 /testSort/Makefile
parent10cf601ea03e92323d802391a437f335924e5107 (diff)
auto run protoc
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'testSort/Makefile')
-rw-r--r--testSort/Makefile34
1 files changed, 0 insertions, 34 deletions
diff --git a/testSort/Makefile b/testSort/Makefile
deleted file mode 100644
index 88a8320..0000000
--- a/testSort/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-VERSION = $(shell git describe --tags)
-BUILDTIME = $(shell date +%Y.%m.%d)
-
-run: clean build
- ./testSort
-
-vet:
- @GO111MODULE=off go vet
- @echo this go library package builds okay
-
-build:
- GO111MODULE=off go build \
- -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-
-install:
- GO111MODULE=off go install \
- -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-
-goimports:
- goimports -w *.go
- # // to globally reset paths:
- # // gofmt -w -r "go.wit.com/gui -> go.wit.com/gui/gui" .
-
-redomod:
- rm -f go.*
- GO111MODULE= go mod init
- GO111MODULE= go mod tidy
-
-reset:
- # clear your terminal
- reset
-
-clean:
- -rm -f *.pb.go testSort