diff options
author | yenatch <yenatch@gmail.com> | 2013-12-08 20:13:10 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-08 20:13:10 -0500 |
commit | 20c01389cc8b5cbea59796ee0825fcd877c15fef (patch) | |
tree | 850d1350a09e49e0b1d0ae33f9c7adbfba37c40c | |
parent | b9218d843b1dc1b5ab52bb375c910118865ad112 (diff) |
clearer install instructions
-rw-r--r-- | INSTALL.md | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -8,10 +8,11 @@ A base rom of Pokémon Red is required to assemble **pokered.gbc**. # Linux +Linux dependencies. OSX users already have these after installing Xcode. + sudo apt-get install make gcc bison git python python-setuptools - sudo easy_install pip -Install rgbds, a Game Boy ROM assembler. +Install **rgbds**, a Game Boy assembler: git clone git://github.com/bentley/rgbds.git cd rgbds @@ -20,7 +21,7 @@ Install rgbds, a Game Boy ROM assembler. cd .. -Set up the pokered repository. +Set up the pokered repository: git clone git://github.com/iimarckus/pokered.git cd pokered @@ -28,15 +29,14 @@ Set up the pokered repository. git submodule init git submodule update - cd extras - pip install -r requirements.txt - cd .. + sudo easy_install pip + pip install -r extras/requirements.txt Put your base rom in the pokered repository. Name it "baserom.gbc". make red -This should take about 10-15 seconds. Subsequent compiles are faster. +This should take about 10-15 seconds. Subsequent builds are faster. To build Pokémon Blue: @@ -46,7 +46,7 @@ To build Pokémon Blue: # OSX -Download and install Xcode. Then follow the Linux instructions. +Download and install **Xcode**. Then follow the Linux instructions. # Windows |