From c17efa9608aa3778529909c8d61df5ecb0c6ebb8 Mon Sep 17 00:00:00 2001 From: David Florness Date: Tue, 2 Jun 2020 17:43:35 -0600 Subject: [PATCH] Simple Makefile --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3a70832 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +GOSRC != find . -name '*.go' +GOSRC += go.mod +GO = go +RM ?= rm -f + +tallyard: $(GOSRC) + $(GO) build -o $@ -- 2.38.4