2020-05-07 14:49:12 -07:00

12 lines
183 B
Makefile

PLUGIN_BINARY=containerd-driver
export GO111MODULE=on
default: build
.PHONY: clean
clean: ## Remove build artifacts
rm -rf ${PLUGIN_BINARY}
build:
go build -o ${PLUGIN_BINARY} .