diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 15 |
2 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,4 @@ +bingo-factory # Binaries for programs and plugins *.exe *.exe~ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a0b608 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: all +all: + go build + +.PHONY: tidy +tidy: + go mod tidy + +.PHONY: clean +clean: tidy + rm ./bingo-factory + +.PHONY: test +test: + go test ./... |
