mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-22 08:08:07 +00:00
8 lines
174 B
Makefile
8 lines
174 B
Makefile
|
SOURCES := $(shell find . -name '*.go')
|
||
|
TARGET_OS := linux
|
||
|
|
||
|
cis_kubernetes: $(SOURCES)
|
||
|
GOOS=$(TARGET_OS) go build -o cis_kubernetes .
|
||
|
|
||
|
install: cis_kubernetes
|
||
|
./install.sh
|