Skip to content

motuzj/CCG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.