Add a simple Makefile for compiling
1 files changed, 4 insertions(+), 0 deletions(-) A Makefile
A Makefile => Makefile +4 -0
@@ 0,0 1,4 @@ +GOSRC=$(wildcard *.go) + +axon: go.mod go.sum $(GOSRC) + go build -o $@ $(GOSRC)