Update README.md

Updated README to use make setup
This commit is contained in:
Darek Konopka 2023-01-24 18:59:50 -05:00 committed by GitHub
parent 4bd3047d3f
commit 4a524883e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 13 deletions

View File

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