Turkish mangala game library
https://kurth4cker.codeberg.page/libmangala
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 months ago | |
---|---|---|
.gitignore | 9 months ago | |
COPYING | 10 months ago | |
Makefile | 4 months ago | |
README | 4 months ago | |
game.c | 3 months ago | |
libmangala.3 | 3 months ago | |
mangala.h | 3 months ago | |
turn.c | 3 months ago |
README
libmangala ========== Turkish mancala game library. Turkish mancala (mangala) is a board game. This library focus on providing simple game initialization, turn handling and game check functions. So programmers don't need to worry about mangala related handling issues. Just call a function for starting a turn, another for playing turn and another for doing end-of-game tasks. Requirements ------------ A C99-compiler and POSIX make. Installation ------------ Enter the following command to build and install libmangala (if necessary as root): make install For customizing installation directories you can set up PREFIX, BINDIR, and MANDIR. Also you can use standart flag variables like CFLAGS and CPPFLAGS. For example (for installing to users home directory): make install PREFIX=$HOME/.local Usage ----- Include the header mangala.h in your code and link against libmangala with "-lmangala". You don't need libmangala at your programs runtime. libmangala provides only a static library ("libmangala.a") because of it is very little library. Documentation ------------- See libmangala(3). Homepage -------- https://kurth4cker.codeberg.page/libmangala Author ------ kurth4cker <kurth4cker@tutanota.com>