ground-dashboard/ground/dashboard/Makefile

21 lines
260 B
Makefile
Raw Normal View History

2022-12-05 22:25:36 +00:00
.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-dashboard-$(OS)-$(ARCH) .
test:
go test .
clean:
rm -rf build