Add a makefile for ease of build

pull/1/head
Liz Rice 7 years ago
parent e5a34b9142
commit 6ffb86a559

@ -0,0 +1,8 @@
SOURCES := $(shell find . -name '*.go')
TARGET_OS := linux
cis_kubernetes: $(SOURCES)
GOOS=$(TARGET_OS) go build -o cis_kubernetes .
install: cis_kubernetes
./install.sh
Loading…
Cancel
Save