From 6d781df6bda2b86a8dd00d12a13455a46ad86057 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Fri, 27 Sep 2024 22:33:07 -0400 Subject: Add project makefile + Update gitignore --- .gitignore | 1 + Makefile | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index f40e964..146d726 100644 --- a/.gitignore +++ b/.gitignore @@ -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 ./... -- cgit v1.2.3