~edwargix/tallyard

c17efa9608aa3778529909c8d61df5ecb0c6ebb8 — David Florness 5 years ago 0557aee
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 $@