From 3e8d8e930b5fa910b3e368f5df19b622928a7f34 Mon Sep 17 00:00:00 2001 From: yenatch Date: Fri, 14 Feb 2014 00:13:24 -0500 Subject: [PATCH] make compare: Use md5sum -c instead of comparing a base rom --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 5e4c9efb..8df8cb84 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,8 @@ $(shell $(foreach obj, $(OBJS), \ all: $(ROMS) red: pokered.gbc blue: pokeblue.gbc -compare: baserom.gbc pokered.gbc - cmp $^ +compare: + @md5sum -c --quiet roms.md5 redrle: extras/redtools/redrle.c ${CC} -o $@ $< @@ -44,9 +44,6 @@ clean: rm -f redrle -baserom.gbc: ; - @echo "Wait! Need baserom.gbc first. Check README for details." && false - %.asm: ; .asm.tx: $(eval TEXTQUEUE += $<)