From beeb3c3b0379a9d7f12f99393d67546cb973968a Mon Sep 17 00:00:00 2001 From: Jordan Halase Date: Mon, 30 Sep 2019 10:58:03 -0500 Subject: Update readme --- README.md | 22 ---------------------- readme.md | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 22 deletions(-) delete mode 100644 README.md create mode 100644 readme.md diff --git a/README.md b/README.md deleted file mode 100644 index 2076702..0000000 --- a/README.md +++ /dev/null @@ -1,22 +0,0 @@ -Simple Asteroids clone in C as an exercise in game development. - -* Requires [SDL2](https://libsdl.org) for input and drawing. - -* Compiles with gcc or clang. Can compile on Windows with clang or mingw. Visual Studio is not supported. - -In order to compile, the SDL2 development libraries are needed. - -### Linux - -#### APT (Debian, Ubuntu, Raspbian) - -`sudo apt update` -`sudo apt install libsdl2-dev` - -#### Yum (Red Hat, Fedora, CentOS) - -`sudo yum install SDL2-devel` - -#### Pacman (Arch) - -`sudo pacman -S sdl2` diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..29b3e4b --- /dev/null +++ b/readme.md @@ -0,0 +1,17 @@ +# Simple Asteroids Clone + +Simple Asteroids clone in C as an exercise in game development. + +* Requires [SDL2](https://libsdl.org) for input and drawing. + +* Compiles with gcc or clang. Can compile on Windows with clang or mingw. Visual Studio is not supported. + +In order to compile, the SDL2 development libraries are needed. + +* Debian, Ubuntu, Raspbian: `sudo apt install libsdl2-dev`. + +* Red Hat, Fedora, CentOS: `sudo yum install SDL2-devel + +* Arch: `sudo pacman -S sdl2` + +* macOS (with [Homebrew](https://brew.sh)): `brew install sdl2` -- cgit v1.2.1