nomad-driver-nix2/GNUmakefile

12 lines
177 B
Makefile
Raw Normal View History

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