summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2016-03-01 21:09:34 -0500
committeryenatch <yenatch@gmail.com>2016-03-01 21:13:38 -0500
commit0be6e6c910ea4ab7909d878aa12c4c7989d5ca13 (patch)
tree670e2a4e974084991e4c7b93836b239339c796c2
parente11ef2b8d5d73fd8c56ee015c78b086aaf3daf02 (diff)
Remove useless lines in the makefile.
The previous rules were composed this way but only because target-specific variables weren't used. As they are now, they actually do nothing.
-rw-r--r--Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 44f872647..65c64ede0 100644
--- a/Makefile
+++ b/Makefile
@@ -45,12 +45,10 @@ compare: pokecrystal.gbc pokecrystal11.gbc
%.asm: ;
%11.o: dep = $(shell $(includes) $(@D)/$*.asm)
-$(crystal11_obj): %11.o:
%11.o: %.asm $$(dep)
rgbasm -D CRYSTAL11 -o $@ $<
%.o: dep = $(shell $(includes) $(@D)/$*.asm)
-$(crystal_obj): %.o:
%.o: %.asm $$(dep)
rgbasm -o $@ $<