summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-05-29 23:22:24 -0400
committeryenatch <yenatch@gmail.com>2017-05-29 23:22:24 -0400
commit6001eeba40879de457ed9cce6e980e1a3b32543f (patch)
treee366da5a9cbeb763e31a0cb1ab00b0390e853816
parent2f2aa10c9c5bbc66c148176bb5570f82e368c658 (diff)
makefile misc qol
- md5sum: no more --quiet. this flag is not standard and seeing "OK" is probably better - saner use of $(roms)
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 374979659..27df84035 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-MD5 := md5sum -c --quiet
+MD5 := md5sum -c
.SUFFIXES:
.PHONY: all clean tools compare crystal crystal11
@@ -26,16 +26,16 @@ gfx/pics.o
crystal11_obj := $(crystal_obj:.o=11.o)
-roms := pokecrystal.gbc
+roms := pokecrystal.gbc pokecrystal11.gbc
-all: $(roms)
+all: crystal
crystal: pokecrystal.gbc
crystal11: pokecrystal11.gbc
clean:
rm -f $(roms) $(crystal_obj) $(crystal11_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
-compare: pokecrystal.gbc pokecrystal11.gbc
+compare: $(roms)
@$(MD5) roms.md5
tools: