From 516dbd1aaec669d27db253c3e74bf7d5f90eaf8d Mon Sep 17 00:00:00 2001 From: yenatch Date: Sun, 8 Dec 2013 01:34:53 -0500 Subject: Makefile: $: is not an escaped : --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3