From f877025b2b9ab4f58e6c27c4bf01658ec7049af0 Mon Sep 17 00:00:00 2001 From: David Florness Date: Thu, 3 Feb 2022 23:55:18 -0500 Subject: [PATCH] Add a simple Makefile for compiling --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fa0956f --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +GOSRC=$(wildcard *.go) + +axon: go.mod go.sum $(GOSRC) + go build -o $@ $(GOSRC) -- 2.38.4