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

Makefile: fix inclusion of source files for thalos-tools

This commit is contained in:
Henrik Hautakoski 2023-10-22 20:32:49 +02:00
parent 809f42f5af
commit 1ced6146b0

View file

@ -18,7 +18,7 @@ build/$(PROGRAM) :
tools : build/thalos-tools
build/thalos-tools :
$(GO) build $(GOBUILDFLAGS) -o $@ cmd/tools/main.go cmd/tools/flags.go cmd/tools/bench.go cmd/tools/validate.go
$(GO) build $(GOBUILDFLAGS) -o $@ $(shell find cmd/tools -type f -name *.go)
install: build tools
install -D build/$(PROGRAM) $(DESTDIR)$(BINDIR)/$(PROGRAM)