From 029b08bedbff2e0a6e1279c46ec8cfa520dc6524 Mon Sep 17 00:00:00 2001 From: "owestness@gmail.com" Date: Sat, 8 Nov 2025 10:31:19 -0500 Subject: [PATCH] add makefile and update doc --- Makefile | 14 ++++++++++++++ README.md | 17 +++++++++++++++-- 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..abd0d0d --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +EXT := +ifeq ($(OS),Windows_NT) + EXT = .exe +endif + +BIN := pike$(EXT) + +$(BIN): + @echo " ODIN" + @odin build . -out:$(BIN) + +clean: + @echo " CLEAN" + @$(RM) $(BIN) diff --git a/README.md b/README.md index d27d18e..2d65b8f 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,26 @@ Nonchalant fishing poker game ![Logo](./assets/images/fih.png) -### WHAT IS pike +### What is pike Pike is an exiting fishing extravaganza that mixes poker and fishing into a coherent experience that produces minutes of fun! This game is a simple-2D fishing-like. -### WHAT INSPIRED pike +### What inspired pike Pike was inspired by Balatro and WebFishing--a combination of strategy and aesthetic. + +### Build + +Building for both Windows and Linux use the `Makefile` via: + + $ make + $ ./pike + +You can clean the working tree with: + + $ make clean + +Happy gaming!