summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSatoMew <SatoMew@users.noreply.github.com>2019-04-07 10:25:34 +0100
committerGitHub <noreply@github.com>2019-04-07 10:25:34 +0100
commitbe687a62757f39c8c9586193100c40b32791d164 (patch)
tree91c80bb6d6c6ded0cc0dc72dea8ffb7696144098
parent1110daf2aedbec9737bfb1ae8cc572bba800d088 (diff)
Update INSTALL.md
Added a missing installation step.
-rw-r--r--INSTALL.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 203e532bb..1fa4146e4 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -20,9 +20,10 @@ To set up the repository:
git clone https://github.com/pret/pokefirered
git clone https://github.com/luckytyphlosion/agbcc -b new_layout_with_libs
- cd agbcc
+ cd ./agbcc
make
make install prefix=../pokefirered
+ make install-sdk prefix=../pokefirered
cd ../pokefirered
./build_tools.sh
@@ -31,6 +32,10 @@ To build **pokefirered.gba**:
make -j$(nproc)
+To confirm it matches the official ROM image while building, do this instead:
+
+ make compare -j$(nproc)
+
**Note:** 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