diff options
author | yenatch <yenatch@gmail.com> | 2013-12-08 01:34:53 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-08 01:36:59 -0500 |
commit | 516dbd1aaec669d27db253c3e74bf7d5f90eaf8d (patch) | |
tree | 6eda0ea6a1041114fef598427f31d8abbb96af85 | |
parent | 168d03b957c75df88ee4c5b26e25b60249c82dcc (diff) |
Makefile: $: is not an escaped :
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |