aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 ./...