shithub: pokered

Download patch

ref: 516dbd1aaec669d27db253c3e74bf7d5f90eaf8d
parent: 168d03b957c75df88ee4c5b26e25b60249c82dcc
author: yenatch <yenatch@gmail.com>
date: Sat Dec 7 20:34:53 EST 2013

Makefile: $: is not an escaped :

--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,7 @@
 globals.tx: globals.asm
 	@cp $< $@
 
-$(OBJS): $$*.tx $$($$*_DEPENDENCIES$:.asm=.tx)
+$(OBJS): $$*.tx $$(patsubst %.asm, %.tx, $$($$*_DEPENDENCIES))
 	rgbasm -o $@ $*.tx
 
 pokered.gbc: globals.tx $(RED_OBJS)