afe7bbf0ac
Change-Id: Ibf81b7d37bd724b78bd2cfd9c4e88f1c37578268
19 lines
312 B
Makefile
19 lines
312 B
Makefile
# Makefile for the 'osel' project.
|
|
|
|
# Note that the installation of go and vgo is accomplished by
|
|
# tools/test-setup.sh
|
|
|
|
SOURCE?=./...
|
|
|
|
env:
|
|
@echo "Running build"
|
|
# $(HOME)/go/bin/vgo build
|
|
|
|
test:
|
|
@echo "Running tests"
|
|
# $(HOME)/go/bin/vgo test $(SOURCE) -cover
|
|
|
|
fmt:
|
|
@echo "Running fmt"
|
|
# go fmt $(SOURCE)
|