add makefile and update doc
This commit is contained in:
14
Makefile
Normal file
14
Makefile
Normal file
@@ -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)
|
||||
17
README.md
17
README.md
@@ -3,13 +3,26 @@ Nonchalant fishing poker game
|
||||
|
||||

|
||||
|
||||
### 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!
|
||||
|
||||
Reference in New Issue
Block a user