1 files changed, 3 insertions(+), 3 deletions(-)
M Makefile
M Makefile => Makefile +3 -3
@@ 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)