10 lines
93 B
Makefile
10 lines
93 B
Makefile
|
all: security
|
||
|
|
||
|
security: */*.go *.go
|
||
|
go build -o $@
|
||
|
|
||
|
format:
|
||
|
gofmt -s -w .
|
||
|
|
||
|
.PHONY: format
|