diff options
author | yenatch <yenatch@gmail.com> | 2014-02-14 00:13:24 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-14 00:17:02 -0500 |
commit | 3e8d8e930b5fa910b3e368f5df19b622928a7f34 (patch) | |
tree | 40b7db28bb5535f75ab0be3143d73dec5a073cda | |
parent | d4c563c4a3dd1a1617e4298273ff69fbc77cb7b3 (diff) |
make compare: Use md5sum -c instead of comparing a base rom
-rw-r--r-- | Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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 += $<) |