nomad-mirage-plugin/GNUmakefile

12 lines
178 B
Text
Raw Normal View History

2020-02-13 02:07:05 +00:00
PLUGIN_BINARY=hello-driver
export GO111MODULE=on
default: build
.PHONY: clean
clean: ## Remove build artifacts
rm -rf ${PLUGIN_BINARY}
build:
go build -o ${PLUGIN_BINARY} .