2020-07-09 18:33:35 -07:00

22 lines
272 B
Makefile

BINARY ?= containerd-driver
ifndef $(GOLANG)
GOLANG=$(shell which go)
export GOLANG
endif
export GO111MODULE=on
default: build
.PHONY: clean
clean:
rm -f $(BINARY)
.PHONY: build
build:
$(GOLANG) build -o $(BINARY) .
.PHONY: test
test:
./tests/run_tests.sh