From 18fe7e25da110ca726059b235f279f344e95dbbf Mon Sep 17 00:00:00 2001 From: stag019 Date: Sun, 18 Jan 2015 19:39:16 -0500 Subject: No longer need to make a mapfile with the newest RGBDS source. This RGBDS doesn't have a release yet. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ddb9d88e..938860f3 100644 --- a/Makefile +++ b/Makefile @@ -84,8 +84,8 @@ $(all_obj): $$*.asm $$($$*_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 poke$*.sym -m poke$*.map +# Make a symfile for debugging. +link = rgblink -n poke$*.sym poke%.gbc: $$(%_obj) $(link) -o $@ $^ -- cgit v1.2.3 From 4a8f7d3dd2c8413a88af4cf4f2f42ba0ccf044af Mon Sep 17 00:00:00 2001 From: stag019 Date: Sun, 18 Jan 2015 19:41:59 -0500 Subject: Remove symfiles on clean. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 938860f3..8cdbe2d6 100644 --- a/Makefile +++ b/Makefile @@ -93,5 +93,5 @@ poke%.gbc: $$(%_obj) clean: - rm -f $(roms) $(all_obj) + rm -f $(roms) $(all_obj) poke*.sym find . \( -iname '*.1bpp' -o -iname '*.2bpp' -o -iname '*.pic' \) -exec rm {} + -- cgit v1.2.3 From 6e8f6f66c111927160364be937ddbd3f9894fd67 Mon Sep 17 00:00:00 2001 From: stag019 Date: Sun, 18 Jan 2015 19:43:45 -0500 Subject: make compare depends on red and blue being built. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8cdbe2d6..5cc485c1 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ MD5 := md5sum -c --quiet # The compare target is a shortcut to check that the build matches the original roms exactly. # This is for contributors to make sure a change didn't affect the contents of the rom. # More thorough comparison can be made by diffing the output of hexdump -C against both roms. -compare: +compare: red blue @$(MD5) roms.md5 -- cgit v1.2.3