aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
blob: 6d84e6b4f806d52db6133a656f73038f137d0da9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
PLUGIN_BINARY=hello-driver
export GO111MODULE=on

default: build

.PHONY: clean
clean: ## Remove build artifacts
	rm -rf ${PLUGIN_BINARY}

build:
	go build -o ${PLUGIN_BINARY} .