mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-10-31 20:39:14 +00:00
8 lines
147 B
Makefile
8 lines
147 B
Makefile
SOURCES := $(shell find . -name '*.go')
|
|
TARGET_OS := linux
|
|
BINARY := kube-bench
|
|
|
|
$(BINARY): $(SOURCES)
|
|
GOOS=$(TARGET_OS) go build -o $(BINARY) .
|
|
|