make compare: Use md5sum -c instead of comparing a base rom

This commit is contained in:
yenatch 2014-02-14 00:13:24 -05:00
parent d4c563c4a3
commit 3e8d8e930b

View file

@ -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 += $<)