https://github.com/giodebrito/aztroz
Small space game made in C with SDL Library.
https://github.com/giodebrito/aztroz
c-programming docker docker-compose shell-script video-game
Last synced: 3 months ago
JSON representation
Small space game made in C with SDL Library.
- Host: GitHub
- URL: https://github.com/giodebrito/aztroz
- Owner: GIOdeBrito
- License: gpl-3.0
- Created: 2023-08-28T17:49:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-01T15:05:35.000Z (over 1 year ago)
- Last Synced: 2025-10-06T23:33:42.044Z (9 months ago)
- Topics: c-programming, docker, docker-compose, shell-script, video-game
- Language: C
- Homepage:
- Size: 1.36 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Aztroz
A small space game made in C with the SDL2 Library.
I've made some secret projects in the past in C. But this
is the one, or one of the ones, that I'll leave uploaded to Github.
## Requirements
- A Linux-running machine
- GNU C Compiler
- SDL2 Library
## Setting up
First one must have the the GNU C Compiler installed in its machine.
```bash
sudo apt install gcc
```
After that, install the SDL2 Library.
```bash
sudo apt-get install libsdl2-dev
```
And SDL2 Image, for some reason they are separated.
```bash
sudo apt-get install libsdl2-image-dev
```
## Build
Simply run the make command on the root directory.
```bash
make
```