aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-09-27 22:33:07 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-09-27 22:33:07 -0400
commit6d781df6bda2b86a8dd00d12a13455a46ad86057 (patch)
tree92f35d47a001a2af5339132b62828bec3faff2c3
parenta0ab77f2e8f21a7096dc9b0828907d6e4e34fc2d (diff)
Add project makefile + Update gitignore
-rw-r--r--.gitignore1
-rw-r--r--Makefile15
2 files changed, 16 insertions, 0 deletions
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 ./...