diff options
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md index d47ca0dea..2f8377ac2 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -13,6 +13,7 @@ cd .. git clone --recursive https://github.com/pret/pokecrystal cd pokecrystal +make init ``` To build **pokecrystal.gbc**: @@ -37,6 +38,7 @@ cd .. git clone --recursive https://github.com/pret/pokecrystal cd pokecrystal +make init ``` To build **pokecrystal.gbc**: @@ -64,6 +66,7 @@ pip install pypng git clone --recursive https://github.com/pret/pokecrystal cd pokecrystal +make init ``` To build **pokecrystal.gbc**: @@ -88,7 +91,7 @@ mkdir vagrantbox cd vagrantbox vagrant init pokecrystal vagrant up -vagrant ssh -c "cd /vagrant && git clone --recursive https://github.com/pret/pokecrystal" +vagrant ssh -c "cd /vagrant && git clone --recursive https://github.com/pret/pokecrystal && cd pokecrystal && make init" vagrant ssh ``` |