security/Makefile

14 lines
133 B
Makefile
Raw Permalink Normal View History

2024-08-13 19:25:36 +00:00
all: security
security: */*.go *.go
go build -o $@
format:
gofmt -s -w .
update:
go get -u
go mod tidy
.PHONY: format update