From 4a524883e57e0f8c88994610475d472c3ede91cb Mon Sep 17 00:00:00 2001 From: Darek Konopka <69826267+DRK-512@users.noreply.github.com> Date: Tue, 24 Jan 2023 18:59:50 -0500 Subject: [PATCH] Update README.md Updated README to use make setup --- README.md | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 7816d0cdc20..3b5ee01f687 100644 --- a/README.md +++ b/README.md @@ -22,23 +22,15 @@ Project Setup git clone https://github.com/zeldaret/tp ``` -2. Setup compiler directory +2. Setup compiler ```bash -mkdir -p tools/mwcc_compiler/ +make setup ``` -3. Download [GC_WII_COMPILERS.zip](https://cdn.discordapp.com/attachments/727918646525165659/917185027656286218/GC_WII_COMPILERS.zip). +3. Place a copy of NTSC-U GCN Twilight Princess in the root directory and call it `gz2e01.iso` (find this on your own) -4. Extract `GC_WII_COMPILERS.zip` into the previously created `mwcc_compiler` directory - -```bash -unzip GC_WII_COMPILERS.zip "GC/*" -d tools/mwcc_compiler/ && mv tools/mwcc_compiler/GC/* tools/mwcc_compiler/ && rmdir tools/mwcc_compiler/GC -``` - -5. Place a copy of NTSC-U GCN Twilight Princess in the root directory and call it `gz2e01.iso` (find this on your own) - -6. Setup the project +4. Setup the project ```bash ./tp setup @@ -140,4 +132,4 @@ tp/ ├── include_link.mk # Makefiles to include in the main Makefile. ├── obj_files.mk # Object files to include in the main Makefile. └── tp # Bash script used to call the main tp python script in tools directory. -``` \ No newline at end of file +```