ground-dashboard/ground/tool/Makefile

21 lines
256 B
Makefile

.PHONY: generate_test_data run
OS=$(shell uname)
ARCH=$(shell arch)
install:
go get ./...
go get -t ./...
run:
go run . $(source)
build:
go build -o build/white-vest-tools-$(OS)-$(ARCH) .
test:
go test .
clean:
rm -rf build