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 63faab21db
commit bf9dcee14c
+5 -13
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.
```
```