nomad-driver-nix2/GNUmakefile

12 lines
178 B
Makefile
Raw Normal View History

2022-11-28 10:33:28 +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} .