From be687a62757f39c8c9586193100c40b32791d164 Mon Sep 17 00:00:00 2001 From: SatoMew Date: Sun, 7 Apr 2019 10:25:34 +0100 Subject: Update INSTALL.md Added a missing installation step. --- INSTALL.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3