20 lines
459 B
Makefile
20 lines
459 B
Makefile
VERSION = $(shell git describe --tags)
|
|
|
|
# create the go.mod and go.sum if this is a brand new repo
|
|
# REDOMOD = $(shell if [ -e go.mod ]; then echo go.mod; else echo no go mod; fi)
|
|
REDOMOD = $(shell if [ -e go.sum ]; then echo go.sum exists; else GO111MODULE= go mod init; GO111MODULE= go mod tidy; fi)
|
|
|
|
all:
|
|
GO111MODULE=off go vet
|
|
|
|
goimports:
|
|
goimports -w *.go
|
|
|
|
redomod:
|
|
rm -f go.*
|
|
GO111MODULE= go mod init
|
|
GO111MODULE= go mod tidy
|
|
|
|
clean:
|
|
rm -f go.*
|