mirror of https://github.com/pret/pokecrystal.git
update INSTALL.md with submodule instructions
This commit is contained in:
parent
81c5b26945
commit
4b5a5b6f0e
11
INSTALL.md
11
INSTALL.md
|
@ -93,6 +93,13 @@ pip install -r requirements.txt
|
||||||
|
|
||||||
Make sure you downloaded a base rom. Name it **baserom.gbc**.
|
Make sure you downloaded a base rom. Name it **baserom.gbc**.
|
||||||
|
|
||||||
|
**pokecrystal** only compiles with the use of a git submodule. To activate the submodule type:
|
||||||
|
|
||||||
|
```
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
```
|
||||||
|
|
||||||
Now you should be able to build **pokecrystal.gbc** for the first time.
|
Now you should be able to build **pokecrystal.gbc** for the first time.
|
||||||
|
|
||||||
This compiles a new rom from the source code, with any patches filled in from the base rom.
|
This compiles a new rom from the source code, with any patches filled in from the base rom.
|
||||||
|
@ -139,6 +146,10 @@ which rgbasm
|
||||||
git clone git://github.com/kanzure/pokecrystal.git
|
git clone git://github.com/kanzure/pokecrystal.git
|
||||||
cd pokecrystal
|
cd pokecrystal
|
||||||
|
|
||||||
|
# grab extras/ which is required for compiling
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
|
||||||
# install python requirements
|
# install python requirements
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue