nomad-driver-nix2/GNUmakefile

12 lines
177 B
Text
Raw Normal View History

2022-11-29 09:46:43 +01:00
PLUGIN_BINARY=nix2-driver
2022-11-28 11:33:28 +01:00
export GO111MODULE=on
default: build
.PHONY: clean
clean: ## Remove build artifacts
rm -rf ${PLUGIN_BINARY}
build:
go build -o ${PLUGIN_BINARY} .