From 1ced6146b08d67c18c8bd50880927d4f2643f5a2 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 22 Oct 2023 20:32:49 +0200 Subject: [PATCH] Makefile: fix inclusion of source files for thalos-tools --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d4acb70..ba8b768 100644 --- a/Makefile +++ b/Makefile @@ -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)