Files
stats-gateway/Makefile
T

13 lines
216 B
Makefile

.PHONY: build test clean
build:
go build -o bin/stats-gateway ./cmd/server
go build -o bin/stats-collector ./cmd/collector
go build -o bin/stats-snapshot ./cmd/snapshot
test:
go test ./...
clean:
rm -rf bin/