summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2015-03-11 22:25:54 -0700
committeryenatch <yenatch@gmail.com>2015-03-11 22:25:54 -0700
commit967977b7af6d2079f2fde6d151e6e1f9f9b34077 (patch)
tree580d894fd79eafcc674f2fa442436c91c25bcbce
parent75ba97a039796bbecf1390edbe71c73dc52f124f (diff)
baserom.gbc is no longer required to build
-rw-r--r--INSTALL.md10
-rw-r--r--Makefile5
2 files changed, 0 insertions, 15 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 67ad45e28..a3e551dda 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -10,8 +10,6 @@
git clone --recursive git://github.com/kanzure/pokecrystal.git
cd pokecrystal
-- Copy a Pokémon Crystal rom into `pokecrystal/`. Name it **baserom.gbc**. Eventually this will not be required.
-
To build **pokecrystal.gbc**:
make
@@ -35,8 +33,6 @@ In the shell, run:
git clone --recursive git://github.com/kanzure/pokecrystal.git
cd pokecrystal
-- Copy a Pokémon Crystal rom into `pokecrystal/`. Name it **baserom.gbc**. Eventually this will not be required.
-
To build **pokecrystal.gbc**:
make
@@ -56,8 +52,6 @@ In the **Cygwin terminal**:
git clone --recursive git://github.com/kanzure/pokecrystal.git
cd pokecrystal
-- Copy a Pokémon Crystal rom into `C:\cygwin\home\<username>\pokecrystal`. Name it **baserom.gbc**. Eventually this will not be required.
-
To build:
make
@@ -91,7 +85,3 @@ ssh"):
cd /vagrant/pokecrystal
make
-
-To make the build work you will need to copy baserom.gbc into the "pokecrystal"
-directory inside the "virtualbox" directory on the host machine. Eventually
-this will not be required.
diff --git a/Makefile b/Makefile
index ca59f0bcf..357262f01 100644
--- a/Makefile
+++ b/Makefile
@@ -56,9 +56,6 @@ crystal: pokecrystal.gbc
clean:
rm -f $(roms) $(all_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
-baserom.gbc: ;
- @echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false
-
%.asm: ;
$(all_obj): $$*.asm $$($$*_dep)
@@ -70,12 +67,10 @@ $(all_obj): $$*.asm $$($$*_dep)
pokecrystal11.gbc: $(crystal11_obj)
rgblink -n $*.sym -m $*.map -o $@ $^
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -n 1 -p 0 -r 3 -t PM_CRYSTAL $@
- cmp crystal11.gbc $@
pokecrystal.gbc: $(crystal_obj)
rgblink -n $*.sym -m $*.map -o $@ $^
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
- cmp baserom.gbc $@
pngs: