diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-03 13:55:45 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-03 13:55:45 -0500 |
commit | 4b5a5b6f0e29b87ec9fe68f2b6812ab89aafe520 (patch) | |
tree | d138fbecf3963d6ce34688df9a24007a6e00be9b | |
parent | 81c5b26945ac299f6e8d4b0eea5823cf90bb2fed (diff) |
update INSTALL.md with submodule instructions
-rw-r--r-- | INSTALL.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md index 50b180c9a..31e1ab72b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -93,6 +93,13 @@ pip install -r requirements.txt 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. 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 cd pokecrystal +# grab extras/ which is required for compiling +git submodule init +git submodule update + # install python requirements pip install -r requirements.txt |