BINARY := statuspanel
CMD := ./cmd/statuspanel

.PHONY: build test clean

build:
	CGO_ENABLED=0 go build -o $(BINARY) $(CMD)

test:
	go test ./...

clean:
	rm -f $(BINARY)
