pokecrystal-board/INSTALL.md

78 lines
1.5 KiB
Markdown
Raw Normal View History

2017-05-28 12:57:57 -07:00
The source files are assembled into a rom using [**rgbds**](https://github.com/rednex/rgbds).
2016-01-31 15:36:18 -08:00
These instructions explain how to set up the tools required to build.
If you run into trouble, ask for help on irc or discord (see [README.md](README.md)).
2016-03-16 14:57:03 -07:00
2016-01-31 15:36:18 -08:00
2015-02-06 13:41:57 -08:00
# Linux
```bash
sudo apt-get install make gcc bison git libpng-dev
2017-05-28 12:57:57 -07:00
git clone https://github.com/rednex/rgbds
cd rgbds
sudo make install
cd ..
2014-11-12 07:30:37 -08:00
git clone https://github.com/pret/pokecrystal
cd pokecrystal
```
2015-02-06 13:41:57 -08:00
To build **pokecrystal.gbc**:
```bash
make
```
2012-06-02 13:27:24 -07:00
2015-10-25 00:26:12 -07:00
# Mac
2015-02-06 13:41:57 -08:00
In **Terminal**, run:
```bash
2015-10-25 00:26:12 -07:00
xcode-select --install
2012-06-02 13:27:24 -07:00
2017-05-28 12:57:57 -07:00
git clone https://github.com/rednex/rgbds
cd rgbds
sudo make install
cd ..
2012-06-02 13:27:24 -07:00
git clone https://github.com/pret/pokecrystal
cd pokecrystal
```
To build **pokecrystal.gbc**:
```bash
make
```
2015-02-06 13:41:57 -08:00
# Windows
2016-03-16 14:57:03 -07:00
To build on Windows, install [**Cygwin**](http://cygwin.com/install.html) with the default settings.
2012-06-02 13:27:24 -07:00
In the installer, select the following packages:
- `make`
- `git`
- `gcc-core`
2016-01-31 15:27:32 -08:00
Then download [**rgbds**](https://github.com/rednex/rgbds/releases/).
2017-12-09 19:14:11 -08:00
Extract rgbds-0.3.3-win64.tar.gz and put all the `exe` and `dll` files individually in **C:\Cygwin64\usr\local\bin**. If you are using 32-bit Windows and Cygwin, extract **rgbds-0.3.3-win32.tar.gz** to **C:\Cygwin\usr\local\bin**.
2012-06-02 13:27:24 -07:00
**Note: If you have an older rgbds, you will need to update to 0.3.3 or newer.** Ignore this if you have never installed rgbds before.
2015-02-06 13:41:57 -08:00
In the **Cygwin terminal**:
2012-06-02 13:27:24 -07:00
```bash
git clone https://github.com/pret/pokecrystal
cd pokecrystal
```
To build **pokecrystal.gbc**:
```bash
make
```