Simple Makefile
1 files changed, 7 insertions(+), 0 deletions(-) A Makefile
A Makefile => Makefile +7 -0
@@ 0,0 1,7 @@ +GOSRC != find . -name '*.go' +GOSRC += go.mod +GO = go +RM ?= rm -f + +tallyard: $(GOSRC) + $(GO) build -o $@