diff options
author | yenatch <yenatch@gmail.com> | 2014-02-14 00:19:03 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-14 00:19:16 -0500 |
commit | d0b7dee9e96bc69c7ba987d50db9f14bb4b79f5e (patch) | |
tree | 9b62d6b5945d22fc9431b5f0aecfe1972ab0d55e /Makefile | |
parent | 3e8d8e930b5fa910b3e368f5df19b622928a7f34 (diff) |
Makefile: Don't group redrle with phony targets
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -33,10 +33,6 @@ red: pokered.gbc blue: pokeblue.gbc compare: @md5sum -c --quiet roms.md5 - -redrle: extras/redtools/redrle.c - ${CC} -o $@ $< - clean: rm -f $(ROMS) rm -f $(OBJS) @@ -44,6 +40,10 @@ clean: rm -f redrle +redrle: extras/redtools/redrle.c + ${CC} -o $@ $< + + %.asm: ; .asm.tx: $(eval TEXTQUEUE += $<) |