diff options
author | yenatch <yenatch@gmail.com> | 2014-09-19 13:09:37 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-09-19 13:09:37 -0700 |
commit | f1667eb6b533eafbb5121ac605401df69960f6df (patch) | |
tree | 7372c0cf56f9e7c6f8c743883619915173136550 | |
parent | d59dfadf66926ea0c7b5f8bbeaa9b83ee7bb3cb5 (diff) |
Fix the symfile and mapfile filenames.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ $(all_obj): $$*.tx $$(patsubst %.asm, %.tx, $$($$*_dep)) # Link objects together to build a rom. # Make a symfile for debugging. rgblink will segfault if a mapfile isn't made too. -link = rgblink -n $*.sym -m $*.map +link = rgblink -n poke$*.sym -m poke$*.map poke%.gbc: $$(%_obj) $(link) -o $@ $^ |