mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-23 07:22:23 +00:00
Remove repeated steps
This commit is contained in:
parent
013da78dde
commit
da0423c76d
1 changed files with 11 additions and 10 deletions
21
README.md
21
README.md
|
@ -89,19 +89,23 @@ Install them with a single command:
|
|||
pacman --sync --needed --noconfirm libfat-ogc ppc-libpng ppc-freetype ppc-libjpeg-turbo
|
||||
```
|
||||
|
||||
To install GRRLIB with Make in a few commands:
|
||||
Go to the directory where the code was downloaded:
|
||||
|
||||
```bash
|
||||
c:
|
||||
cd \grr\GRRLIB
|
||||
cd \grr
|
||||
```
|
||||
|
||||
To install GRRLIB with Make in a few commands:
|
||||
|
||||
```bash
|
||||
cd GRRLIB
|
||||
make clean all install
|
||||
```
|
||||
|
||||
If you prefer to use CMake, it can also be installed with a few commands:
|
||||
|
||||
```bash
|
||||
c:
|
||||
cd \grr
|
||||
/opt/devkitpro/portlibs/wii/bin/powerpc-eabi-cmake -B build
|
||||
cmake --build build --target install
|
||||
```
|
||||
|
@ -116,24 +120,21 @@ Each library could also be installed individually:
|
|||
To install libpngu:
|
||||
|
||||
```bash
|
||||
c:
|
||||
cd \grr\GRRLIB\lib\pngu
|
||||
cd GRRLIB\lib\pngu
|
||||
make clean all install
|
||||
```
|
||||
|
||||
To install libgrrlib for Wii:
|
||||
|
||||
```bash
|
||||
c:
|
||||
cd \grr\GRRLIB\GRRLIB
|
||||
cd GRRLIB\GRRLIB
|
||||
make clean all install
|
||||
```
|
||||
|
||||
To install libgrrlib for GameCube:
|
||||
|
||||
```bash
|
||||
c:
|
||||
cd \grr\GRRLIB\GRRLIB
|
||||
cd GRRLIB\GRRLIB
|
||||
make PLATFORM=cube clean all install
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue