aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5bd7d420ecda9dc5dc333cdf7ac70d2e8acc90c8 (plain)
1
2
3
4
5
6
7
8
SRC_FILES = $(shell find . -name '*.go')

six_status_exporter: test $(SRC_FILES)
	go build -o $@ cmd/six_monitor/main.go

.PHONY: test
test:
	go test ./...