summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-12-08 01:34:53 -0500
committeryenatch <yenatch@gmail.com>2013-12-08 01:36:59 -0500
commit516dbd1aaec669d27db253c3e74bf7d5f90eaf8d (patch)
tree6eda0ea6a1041114fef598427f31d8abbb96af85
parent168d03b957c75df88ee4c5b26e25b60249c82dcc (diff)
Makefile: $: is not an escaped :
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 41a620a0..e68fa7ac 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,7 @@ globals.asm: $(ALL_DEPENDENCIES:.asm=.tx) $(OBJS:.o=.tx)
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)