1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-10-10 01:49:15 +00:00
kube-bench/makefile

8 lines
147 B
Makefile
Raw Normal View History

SOURCES := $(shell find . -name '*.go')
TARGET_OS := linux
BINARY := kube-bench
$(BINARY): $(SOURCES)
GOOS=$(TARGET_OS) go build -o $(BINARY) .