mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-16 04:24:56 +02:00
35 lines
869 B
Makefile
35 lines
869 B
Makefile
|
|
GO=go
|
|
GOLDFLAGS=-v -s -w -X main.VersionString=$(PROGRAM_VERSION)
|
|
GOBUILDFLAGS=-v -p $(shell nproc) -ldflags="$(GOLDFLAGS)"
|
|
PROGRAM=thalos-server
|
|
PROGRAM_VERSION=0.3.1
|
|
PREFIX=/usr/local
|
|
BINDIR=$(PREFIX)/bin
|
|
CFGDIR=$(PREFIX)/etc/thalos
|
|
|
|
.PHONY: build build/$(PROGRAM) build/thalos-tools test
|
|
|
|
build: build/$(PROGRAM)
|
|
|
|
build/$(PROGRAM) :
|
|
$(GO) build $(GOBUILDFLAGS) -o $@ cmd/thalos/main.go
|
|
|
|
tools : build/thalos-tools
|
|
|
|
build/thalos-tools :
|
|
$(GO) build $(GOBUILDFLAGS) -o $@ $(shell find cmd/tools -type f -name *.go)
|
|
|
|
install: build tools
|
|
install -D build/$(PROGRAM) $(DESTDIR)$(BINDIR)/$(PROGRAM)
|
|
install -D build/thalos-tools $(DESTDIR)$(BINDIR)/thalos-tools
|
|
install -m 644 -D config.example.yml $(DESTDIR)$(CFGDIR)/config.yml
|
|
|
|
install-scripts:
|
|
install -m 755 -t $(DESTDIR) scripts/start.sh scripts/stop.sh
|
|
|
|
test:
|
|
$(GO) test -v ./...
|
|
|
|
clean :
|
|
$(RM) -fr build
|