14 lines
172 B
Makefile
14 lines
172 B
Makefile
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)
|