shithub: pokecrystal

Download patch

ref: f3340de6dc30fb1c889421bdb8a3d22c1b64fa24
parent: 4577af01deccd9d66d9e236c24ed7cb9e6e3430a
author: yenatch <[email protected]>
date: Tue Jun 18 17:54:40 EDT 2013

make clean is no longer required to compile

--- a/INSTALL.md
+++ b/INSTALL.md
@@ -82,9 +82,9 @@
 ```
 
 Now you should be able to build **pokecrystal.gbc** for the first time.
+```bash
+make
 ```
-make clean && make
-```
 
 This ought to take between **3 and 15 seconds**, depending on your computer.
 
@@ -123,8 +123,8 @@
 ```
 
 To compile the rom from asm source:
-```
-make clean && make
+```bash
+make
 ```
 
 That will take between 3 and 15 seconds, depending on your computer. If you see `cmp baserom.gbc pokecrystal.gbc` as the last line, the build was successful! Rejoice!
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,10 @@
 pokecrystal.o: pokecrystal.asm constants.asm wram.asm ${TEXTFILES} lzs
 	rgbasm -o pokecrystal.o pokecrystal.asm
 
+pokecrystal.asm: depend
+depend:
+	@touch main.asm
+
 .asm.tx:
 	python preprocessor.py < $< > $@