shithub: pokecrystal

Download patch

ref: 7fba45f668af424958d542f07ed618a3bd10f569
parent: e2aa3d7ea50856ad31985954c921329559931afa
author: yenatch <yenatch@gmail.com>
date: Wed Sep 11 16:27:16 EDT 2013

fix a typo in Makefile

we want to link more than one object!

--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,7 @@
 	rgbasm -o $@ $(@:.o=.tx)
 
 pokecrystal.gbc: $(OBJS)
-	rgblink -n pokecrystal.sym -m pokecrystal.map -o pokecrystal.gbc $<
+	rgblink -n pokecrystal.sym -m pokecrystal.map -o pokecrystal.gbc $^
 	rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
 
 pngs:
--