2017-12-12 15:50:39 -08:00
# Instructions
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.
2017-12-12 15:50:39 -08:00
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
2017-12-12 15:50:39 -08:00
## Linux
2014-07-23 20:42:04 -07:00
2015-10-21 22:15:07 -07:00
```bash
2017-06-13 13:50:28 -07:00
sudo apt-get install make gcc bison git libpng-dev
2014-07-23 20:42:04 -07:00
2017-05-28 12:57:57 -07:00
git clone https://github.com/rednex/rgbds
2015-10-21 22:15:07 -07:00
cd rgbds
sudo make install
cd ..
2014-11-12 07:30:37 -08:00
2017-04-27 21:38:14 -07:00
git clone https://github.com/pret/pokecrystal
2015-10-21 22:15:07 -07:00
cd pokecrystal
```
2014-07-23 20:42:04 -07:00
2015-02-06 13:41:57 -08:00
To build **pokecrystal.gbc** :
2014-07-23 20:42:04 -07:00
2015-10-21 22:15:07 -07:00
```bash
make
```
2012-06-02 13:27:24 -07:00
2017-12-12 15:50:39 -08:00
## Mac
2015-02-06 13:41:57 -08:00
2015-10-21 22:15:07 -07:00
In **Terminal** , run:
2014-03-08 07:46:13 -08:00
2015-10-21 22:15:07 -07:00
```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
2015-10-21 22:15:07 -07:00
cd rgbds
sudo make install
cd ..
2012-06-02 13:27:24 -07:00
2017-04-27 21:38:14 -07:00
git clone https://github.com/pret/pokecrystal
2015-10-21 22:15:07 -07:00
cd pokecrystal
```
2013-08-03 11:55:45 -07:00
2014-03-08 07:46:13 -08:00
To build **pokecrystal.gbc** :
2013-08-12 09:36:27 -07:00
2015-10-21 22:15:07 -07:00
```bash
make
```
2013-08-12 09:36:27 -07:00
2014-03-08 07:46:13 -08:00
2017-12-12 15:50:39 -08:00
## Windows
Download [**Cygwin** ](http://cygwin.com/install.html ): **setup-x86_64.exe** for 64-bit Windows, **setup-x86.exe** for 32-bit.
2014-03-08 07:46:13 -08:00
2017-12-12 15:50:39 -08:00
Run setup and leave the default settings. At "Select Packages", choose to install the following:
2012-06-02 13:27:24 -07:00
2017-09-23 22:34:44 -07:00
- `make`
- `git`
- `gcc-core`
2016-01-31 15:27:32 -08:00
2017-12-12 15:50:39 -08:00
Then download [**rgbds** ](https://github.com/rednex/rgbds/releases/ ): the latest **win64.tar.gz** or **win32.tar.gz** release. Extract it and put all the `exe` and `dll` files individually in **C:\Cygwin64\usr\local\bin** .
2012-06-02 13:27:24 -07:00
2017-09-23 22:34:44 -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.
2017-12-12 15:50:39 -08:00
In the **Cygwin terminal** , enter these commands:
2012-06-02 13:27:24 -07:00
2015-10-21 22:15:07 -07:00
```bash
2017-04-27 21:38:14 -07:00
git clone https://github.com/pret/pokecrystal
2015-10-21 22:15:07 -07:00
cd pokecrystal
```
2013-08-03 11:57:10 -07:00
2015-10-21 22:15:07 -07:00
To build **pokecrystal.gbc** :
2014-03-08 07:46:13 -08:00
2015-10-21 22:15:07 -07:00
```bash
make
```
2017-12-12 15:50:39 -08:00
To build **pokecrystal11.gbc** :
```bash
make crystal11
```