aboutsummaryrefslogblamecommitdiff
path: root/GNUmakefile
blob: fc9e222f67b379a09959b14b284b688939c888e8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                         









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