summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-01-15 12:17:22 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2020-01-15 12:17:22 -0500
commit19227f535af9b7e95185d0436285314ea1fdde0c (patch)
tree88ebc4bd497e77f1d9deca300f6cedd2c6fb8ffe
parent6d47a7dda740d944bba2f3984f4c51ce5e3e590b (diff)
Fix leading whitespace in INSTALL.md
-rw-r--r--INSTALL.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 78ed7d0c2..d4e60bcef 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -18,36 +18,36 @@ In the case of Cygwin, [include](https://cygwin.com/cygwin-ug-net/setup-net.html
Install the **devkitARM** toolchain of [devkitPro](https://devkitpro.org/wiki/Getting_Started) and add its environment variables. For Windows versions without the Linux subsystem, the devkitPro [graphical installer](https://github.com/devkitPro/installer/releases) includes a preconfigured MSYS2 environment, thus the steps below are not required.
sudo (dkp-)pacman -S gba-dev
- export DEVKITPRO=/opt/devkitpro
- echo "export DEVKITPRO=$DEVKITPRO" >> ~/.bashrc
- export DEVKITARM=$DEVKITPRO/devkitARM
- echo "export DEVKITARM=$DEVKITARM" >> ~/.bashrc
+ export DEVKITPRO=/opt/devkitpro
+ echo "export DEVKITPRO=$DEVKITPRO" >> ~/.bashrc
+ export DEVKITARM=$DEVKITPRO/devkitARM
+ echo "export DEVKITARM=$DEVKITARM" >> ~/.bashrc
## Installation
To set up the repository:
- git clone https://github.com/pret/pokefirered
- git clone https://github.com/pret/agbcc
+ git clone https://github.com/pret/pokefirered
+ git clone https://github.com/pret/agbcc
- cd ./agbcc
- sh build.sh
- sh install.sh ../pokefirered
+ cd ./agbcc
+ sh build.sh
+ sh install.sh ../pokefirered
- cd ../pokefirered
+ cd ../pokefirered
To build **pokefirered.gba**:
- make -j$(nproc)
+ make -j$(nproc)
To confirm it matches the official ROM image while building, do this instead:
- make compare -j$(nproc)
+ make compare -j$(nproc)
If only `.c` or `.s` files were changed, turn off the dependency scanning temporarily. Changes to any other files will be ignored and the build will either fail or not reflect those changes.
- make -j$(nproc) NODEP=1
+ make -j$(nproc) NODEP=1
Convenient targets have been defined to build Pokémon LeafGreen and the 1.1 revisions of both games: