diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-09-27 22:33:07 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-09-27 22:33:07 -0400 |
| commit | 6d781df6bda2b86a8dd00d12a13455a46ad86057 (patch) | |
| tree | 92f35d47a001a2af5339132b62828bec3faff2c3 | |
| parent | a0ab77f2e8f21a7096dc9b0828907d6e4e34fc2d (diff) | |
Add project makefile + Update gitignore
| -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 ./... |
