modify INSTALL.md to reflect Makefile changes

This commit is contained in:
dark-samus 2020-07-17 03:58:05 -04:00
parent 2f74406e92
commit a2641a5ef7
1 changed files with 1 additions and 4 deletions

View File

@ -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