summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2019-12-20 14:26:51 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2019-12-20 14:26:51 -0500
commit2f44988d40ec0eaec1abd4f9ac07dcf5edb0cc26 (patch)
treec05b2c20a936a41854b280e79db1e9d0d2ef33d5 /INSTALL.md
parent32c41f0ec016e9684bc394e6c73b27e5535b4bae (diff)
Update README and INSTALL
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 729014051..1b2ba259e 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,6 +1,6 @@
## Prerequisites
-| Linux | macOS | Windows 10 (build 18917+) | Windows 10 (1709+) | Windows Vista, 7, 8, 8.1, and 10 (1507, 1511, 1607, 1703)
+| Linux | macOS | Windows 10 (build 18917+) | Windows 10 (1709+) | Windows 8, 8.1, and 10 (1507, 1511, 1607, 1703)
| ----- | ----- | ------------------------- | ------------------ | ---------------------------------------------------------
| none | [Xcode Command Line Tools package][xcode] | [Windows Subsystem for Linux 2][wsl2] | [Windows Subsystem for Linux][wsl] | [Cygwin][cygwin]
@@ -42,4 +42,17 @@ If only `.c` or `.s` files were changed, turn off the dependency scanning tempor
make -j$(nproc) NODEP=1
+Convenient targets have been defined to build Pokémon LeafGreen and the 1.1 revisions of both games:
+
+ # LeafGreen 1.0
+ make -j$(nproc) leafgreen
+ # FireRed 1.1
+ make -j$(nproc) firered_rev1
+ # LeafGreen 1.1
+ make -j$(nproc) leafgreen_rev1
+
+To confirm these match the respective official ROM images, prefix `compare_` to each target name. For example:
+
+ make -j$(nproc) compare_leafgreen
+
**Note:** If the build command is not recognized on Linux, including the Linux environment used within Windows, run `nproc` and replace `$(nproc)` with the returned value (e.g.: `make -j4`). Because `nproc` is not available on macOS, the alternative is `sysctl -n hw.ncpu`.