From 221308813109fc0afaec19068b3a815f061cdc46 Mon Sep 17 00:00:00 2001 From: David Florness Date: Fri, 4 Feb 2022 00:12:22 -0500 Subject: [PATCH] Fix Makefile prerequisites --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index fa0956f..3757809 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -GOSRC=$(wildcard *.go) +GOSRC_MAIN=$(wildcard *.go) -axon: go.mod go.sum $(GOSRC) - go build -o $@ $(GOSRC) +axon: go.mod go.sum $(GOSRC_MAIN) $(wildcard **/*.go) + go build -o $@ $(GOSRC_MAIN) -- 2.38.4