Compare commits

...

2 Commits

Author SHA1 Message Date
Rampoina 8e47307c42 Fix README 2022-04-14 17:02:24 +02:00
Rampoina 8549cc522e Add Makefile 2022-04-14 17:01:51 +02:00
2 changed files with 14 additions and 4 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
.PHONY: check-and-reinit-submodules
check-and-reinit-submodules:
@if git submodule status | egrep -q '^[-]|^[+]' ; then \
echo "INFO: reinitializing git submodules"; \
git submodule update --init; \
fi
all:
@${MAKE} -C CBQN/
run:
./CBQN/BQN soko.bqn

View File

@ -5,10 +5,10 @@
If you already have BQN and you have it on your path just run `./soko.bqn`
Otherwise:
1. clone this repo recursively `git clone git.libregaming.org/Rampoina/sokobqn`
2. `make` to compile CBQN
3. `make run` to run the game
1. `make` to compile CBQN
2. `make run` to run the game
## License
sokobqn is licensed as AGPLv3
Sokobqn is licensed as AGPLv3