shithub: pokered

Download patch

ref: d0b7dee9e96bc69c7ba987d50db9f14bb4b79f5e
parent: 3e8d8e930b5fa910b3e368f5df19b622928a7f34
author: yenatch <yenatch@gmail.com>
date: Thu Feb 13 19:19:03 EST 2014

Makefile: Don't group redrle with phony targets

--- a/Makefile
+++ b/Makefile
@@ -33,15 +33,15 @@
 blue: pokeblue.gbc
 compare:
 	@md5sum -c --quiet roms.md5
-
-redrle: extras/redtools/redrle.c
-	${CC} -o $@ $<
-
 clean:
 	rm -f $(ROMS)
 	rm -f $(OBJS)
 	find . -iname '*.tx' -exec rm {} +
 	rm -f redrle
+
+
+redrle: extras/redtools/redrle.c
+	${CC} -o $@ $<
 
 
 %.asm: ;