1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00
thalos/Makefile

14 lines
164 B
Makefile

GO=go
PROGRAM=build/thalos-server
.PHONY: $(PROGRAM) test
$(PROGRAM) :
$(GO) build -o $@ cmd/main/main.go
test:
$(GO) test -v ./...
clean :
$(RM) -fr build