14 lines
133 B
Makefile
14 lines
133 B
Makefile
all: security
|
|
|
|
security: */*.go *.go
|
|
go build -o $@
|
|
|
|
format:
|
|
gofmt -s -w .
|
|
|
|
update:
|
|
go get -u
|
|
go mod tidy
|
|
|
|
.PHONY: format update
|