mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
Python is no longer used to build.
This commit is contained in:
parent
f75049feef
commit
1aefbfa523
24
INSTALL.md
24
INSTALL.md
|
@ -1,6 +1,6 @@
|
||||||
# Linux
|
# Linux
|
||||||
|
|
||||||
sudo apt-get install make git python
|
sudo apt-get install make git gcc
|
||||||
|
|
||||||
sudo apt-get install byacc flex pkg-config libpng-dev
|
sudo apt-get install byacc flex pkg-config libpng-dev
|
||||||
git clone https://github.com/rednex/rgbds
|
git clone https://github.com/rednex/rgbds
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
git clone --recursive https://github.com/pret/pokered
|
git clone https://github.com/pret/pokered
|
||||||
cd pokered
|
cd pokered
|
||||||
|
|
||||||
To build **pokered.gbc** and **pokeblue.gbc**:
|
To build **pokered.gbc** and **pokeblue.gbc**:
|
||||||
|
@ -30,27 +30,31 @@ Then in **Terminal**, run:
|
||||||
xcode-select --install
|
xcode-select --install
|
||||||
brew install rgbds
|
brew install rgbds
|
||||||
|
|
||||||
git clone --recursive https://github.com/pret/pokered
|
git clone https://github.com/pret/pokered
|
||||||
cd pokered
|
cd pokered
|
||||||
|
|
||||||
|
To build **pokered.gbc** and **pokeblue.gbc**:
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
|
|
||||||
To build on Windows, use [**Cygwin**](http://cygwin.com/install.html) (64-bit). Use the default settings.
|
Download [**Cygwin**](http://cygwin.com/install.html): **setup-x86_64.exe** for 64-bit Windows, **setup-x86.exe** for 32-bit.
|
||||||
|
|
||||||
|
Run setup and leave the default settings. At "Select Packages", choose to install the following:
|
||||||
|
|
||||||
In the installer, select the following packages:
|
|
||||||
- `make`
|
- `make`
|
||||||
- `git`
|
- `git`
|
||||||
- `python`
|
- `gcc-core`
|
||||||
|
|
||||||
Then download [**rgbds**](https://github.com/bentley/rgbds/releases).
|
Then download [**rgbds**](https://github.com/rednex/rgbds/releases/): the latest **win64.tar.gz** or **win32.tar.gz** release. Extract it and put all the `exe` and `dll` files individually in **C:\cygwin64\usr\local\bin**.
|
||||||
Extract the archive. Inside should be `rgbasm.exe`, `rgblink.exe`, `rgbfix.exe`, `rgbgfx.exe` and some `.dll` files. Put each file in `C:\cygwin64\usr\local\bin\`. If your Cygwin installation directory differs, ensure the `bin` directory is present in the PATH variable.
|
|
||||||
|
|
||||||
In the **Cygwin terminal**:
|
In the **Cygwin terminal**, enter these commands:
|
||||||
|
|
||||||
git clone --recursive https://github.com/pret/pokered
|
git clone https://github.com/pret/pokered
|
||||||
cd pokered
|
cd pokered
|
||||||
|
|
||||||
|
To build **pokered.gbc** and **pokeblue.gbc**:
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
Loading…
Reference in a new issue