Files
kube-bench/makefile
2017-06-20 09:38:15 +01:00

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) .