Files
security/Makefile
2024-08-13 22:25:36 +03:00

10 lines
93 B
Makefile

all: security
security: */*.go *.go
go build -o $@
format:
gofmt -s -w .
.PHONY: format