nomad-driver-nix2/GNUmakefile
2022-11-29 09:46:43 +01:00

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} .