Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 837 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 837 Bytes

CCG

Logo

This is my collection of CLI C Games. Currently minesweeper, wordle, 2048, snakes and trivia games are available.

Building

You can compile it with make and c compiler (tested on GCC and clang), so make sure you have them installed on your system before building it.

For example, on Debian/Ubuntu based systems you can install them using:

sudo apt update && sudo apt install gcc make

The building process of any game is pretty much the same (with the exception of trivia game):

git clone https://github.com/motuzj/CCG.git
cd CCG
cd {game-name}
make
./{game-name}

or you can use make run to build and run immediately.