shithub: pokecrystal

Download patch

ref: 140a065b7a7c124c3dd03367c1813614caacff86
parent: d67ef7efd5c702b339a486b44b874a29b4f8629a
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Sat Sep 1 19:53:39 EDT 2018

Don't repeat the pokecrystal instructions

--- a/INSTALL.md
+++ b/INSTALL.md
@@ -19,7 +19,7 @@
 
 (The Windows `C:\` drive is called `/mnt/c/` in WSL. Replace *\<user>* in the example path with your username.)
 
-Then follow [the instructions for **Linux**](#linux) to build **pokecrystal**.
+Then follow [the instructions for **Linux**](#linux).
 
 If this doesn't work, try following [the regular Windows instructions](#windows) below.
 
@@ -26,8 +26,6 @@
 
 ## Windows
 
-### 1. Install the required software
-
 Download [**Cygwin**](http://cygwin.com/install.html): **setup-x86_64.exe** for 64-bit Windows, **setup-x86.exe** for 32-bit.
 
 Run setup and leave the default settings. At the "**Select Packages**" step, choose to install the following, all of which are in the "**Devel**" category:
@@ -42,10 +40,8 @@
 
 **Note: If you already have an older rgbds, you will need to update to 0.3.7.** Ignore this if you have never installed rgbds before. If a version newer than 0.3.7 does not work, try downloading 0.3.7.
 
-### 2. Build pokecrystal
+Now open the **Cygwin terminal** and enter the following commands.
 
-Open the **Cygwin terminal** and enter the following commands.
-
 Cygwin has its own file system that's within Windows, at **C:\cygwin64\home\\*\<user>***. If you don't want to store pokecrystal there, you'll have to change the **current working directory** every time you open Cygwin.
 
 For example, if you want to store pokecrystal in **C:\Users\\*\<user>*\Desktop**:
@@ -56,30 +52,11 @@
 
 (The Windows `C:\` drive is called `/cygdrive/c/` in Cygwin. Replace *\<user>* in the example path with your username.)
 
-To download **pokecrystal**:
+Now you're ready to [build **pokecrystal**](#build-pokecrystal).
 
-```bash
-git clone https://github.com/pret/pokecrystal
-cd pokecrystal
-```
 
-To build **pokecrystal.gbc**:
-
-```bash
-make
-```
-
-To build **pokecrystal11.gbc**:
-
-```bash
-make crystal11
-```
-
-
 ## Mac OS X
 
-### 1. Install the required software
-
 Open **Terminal** and enter the following commands.
 
 To install the **Xcode Command Line Tools**:
@@ -95,38 +72,15 @@
 sudo make -C rgbds CFLAGS=-O2 install
 ```
 
-### 2. Build pokecrystal
+Now you're ready to [build **pokecrystal**](#build-pokecrystal).
 
-To download **pokecrystal**:
 
-```bash
-git clone https://github.com/pret/pokecrystal
-cd pokecrystal
-```
-
-To build **pokecrystal.gbc**:
-
-```bash
-make
-```
-
-To build **pokecrystal11.gbc**:
-
-```bash
-make crystal11
-```
-
-
 ## Linux
 
-### 1. Install the required software
+Open **Terminal** and enter the following commands, depending on which distro you're using.
 
-Open **Terminal** and enter the following commands.
+### Debian or Ubuntu
 
-The commands to do this depend on which distro you're using.
-
-#### Debian or Ubuntu
-
 To install the software required for **pokecrystal**:
 
 ```bash
@@ -141,7 +95,7 @@
 sudo make -C rgbds CFLAGS=-O2 install
 ```
 
-#### OpenSUSE
+### OpenSUSE
 
 To install the software required for **pokecrystal**:
 
@@ -157,7 +111,7 @@
 sudo make -C rgbds CFLAGS=-O2 install
 ```
 
-#### Arch Linux
+### Arch Linux
 
 To install the software required for **pokecrystal**:
 
@@ -173,7 +127,7 @@
 sudo make -C rgbds CFLAGS=-O2 install
 ```
 
-#### Termux
+### Termux
 
 To install the software required for **pokecrystal**:
 
@@ -187,7 +141,7 @@
 sudo apt install rgbds
 ```
 
-#### Other distros
+### Other distros
 
 If your distro is not listed here, try to find the required software in its repositories:
 
@@ -208,9 +162,12 @@
 sudo make -C rgbds CFLAGS=-O2 install
 ```
 
-### 2. Build pokecrystal
+Now you're ready to [build **pokecrystal**](#build-pokecrystal).
 
-To download **pokecrystal**:
+
+## Build pokecrystal
+
+To download the **pokecrystal** source files:
 
 ```bash
 git clone https://github.com/pret/pokecrystal