From a2641a5ef7f24b1b74c9f03bc9512a1a38ebe477 Mon Sep 17 00:00:00 2001 From: dark-samus Date: Fri, 17 Jul 2020 03:58:05 -0400 Subject: [PATCH] modify INSTALL.md to reflect Makefile changes --- INSTALL.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 50691c11..ad4f2697 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -37,15 +37,12 @@ To set up the repository: sh install.sh ../tmc cd ../tmc + make tools To build **tmc.gba**: make -j$(nproc) -To confirm it matches the official ROM image while building, do this instead: - - 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