Makefile: $: is not an escaped :

This commit is contained in:
yenatch 2013-12-08 01:34:53 -05:00
parent 168d03b957
commit 516dbd1aae

View file

@ -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)