summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-02 05:14:11 -0600
committerJeff Carr <[email protected]>2024-12-02 05:14:11 -0600
commit23deb2ab407df32e34ee978499153a97e7b07a28 (patch)
tree5920ccb906ad24df5ebaebc6a458d9d4cbcba006 /Makefile
parentbeabb1e3131ff37ca86d714c0f8da04963efa41b (diff)
don't put go binaries in go libraries. ever.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 3d7ebae..5979905 100644
--- a/Makefile
+++ b/Makefile
@@ -2,16 +2,12 @@ all:
@GO111MODULE=off go vet
@echo go vet: this go library package builds okay
-test:
- make -C testGui
-
goimports:
goimports -w *.go
- make -C testGui/ goimports
-redomod:
- rm -f go.*
- goimports -w *.go
+redomod: clean
GO111MODULE= go mod init
GO111MODULE= go mod tidy
+clean:
+ rm -f go.*