cleanup and update small update

l3iggs 2014-06-15 10:18:16 -07:00
parent 22a3a1a3bb
commit ef5c07e35b
1 changed files with 19 additions and 18 deletions

@ -16,28 +16,29 @@ Some other libraries can be built support for as well, please refer to `./config
### Building libretro cores ### Building libretro cores
You should at least build one libretro implementation so RetroArch can do stuff. You should at least build one libretro implementation so RetroArch can do stuff.
There is a [super-project](https://github.com/libretro/libretro-super) that is designed to easily build every libretro port out there. To build every core: There is a [super-project](https://github.com/libretro/libretro-super) that is designed to easily build every libretro port out there. To build every core:
```bash
git clone git://github.com/libretro/libretro-super.git git clone git://github.com/libretro/libretro-super.git
cd libretro-super cd libretro-super
sh libretro-fetch.sh sh libretro-fetch.sh
sh libretro-build.sh sh libretro-build.sh
sh libretro-install.sh <path> sh libretro-install.sh <path>
```
### Building RetroArch ### Building RetroArch
Once dependencies are installed, you can pull and install from Git: ```bash
cd retroarch
git clone git://github.com/Themaister/RetroArch.git ./configure # Script will autodetect features. Refer to --help if you want to override anything, such as --prefix.
cd RetroArch make
./configure # Script will autodetect features. Refer to --help if you want to override anything, such as --prefix. sudo make install
make ```
sudo make install
### Building RetroArch-Phoenix (GUI launcher) ### Building RetroArch-Phoenix (GUI launcher)
If you want a GUI launcher as well, you can build it too: If you want a GUI launcher as well, you can build it too:
```bash
git clone git://github.com/Themaister/RetroArch-Phoenix.git git clone git://github.com/Themaister/RetroArch-Phoenix.git
cd RetroArch-Phoenix cd RetroArch-Phoenix
make # Will build for GTK2 by default. If you're a KDE user or prefer Qt, you can build for Qt with make -f Makefile.qt. make # Will build for GTK2 by default. If you're a KDE user or prefer Qt, you can build for Qt with make -f Makefile.qt.
sudo make install sudo make install
```
Enjoy! :) Enjoy! :)