nomad-driver-nix2/GNUmakefile

12 lines
177 B
Makefile

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