mirror of
https://codeberg.org/portospaceteam/ground-dashboard.git
synced 2024-11-25 00:25:57 +00:00
21 lines
260 B
Makefile
21 lines
260 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-dashboard-$(OS)-$(ARCH) .
|
|
|
|
test:
|
|
go test .
|
|
|
|
clean:
|
|
rm -rf build
|