mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
parent
139a28ff99
commit
4e6adcddff
9
Makefile
9
Makefile
|
@ -17,7 +17,11 @@ pokeblue_obj := $(rom_obj:.o=_blue.o)
|
||||||
|
|
||||||
### Build tools
|
### Build tools
|
||||||
|
|
||||||
MD5 := md5sum -c
|
ifeq (,$(shell which sha1sum))
|
||||||
|
SHA1 := shasum
|
||||||
|
else
|
||||||
|
SHA1 := sha1sum
|
||||||
|
endif
|
||||||
|
|
||||||
RGBDS ?=
|
RGBDS ?=
|
||||||
RGBASM ?= $(RGBDS)rgbasm
|
RGBASM ?= $(RGBDS)rgbasm
|
||||||
|
@ -47,9 +51,8 @@ tidy:
|
||||||
rm -f $(roms) $(pokered_obj) $(pokeblue_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) rgbdscheck.o
|
rm -f $(roms) $(pokered_obj) $(pokeblue_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) rgbdscheck.o
|
||||||
$(MAKE) clean -C tools/
|
$(MAKE) clean -C tools/
|
||||||
|
|
||||||
# For contributors to make sure a change didn't affect the original contents of the ROMs.
|
|
||||||
compare: $(roms)
|
compare: $(roms)
|
||||||
@$(MD5) roms.md5
|
@$(SHA1) -c roms.sha1
|
||||||
|
|
||||||
tools:
|
tools:
|
||||||
$(MAKE) -C tools/
|
$(MAKE) -C tools/
|
||||||
|
|
2
roms.md5
2
roms.md5
|
@ -1,2 +0,0 @@
|
||||||
3d45c1ee9abd5738df46d2bdda8b57dc pokered.gbc
|
|
||||||
50927e843568814f7ed45ec4f944bd8b pokeblue.gbc
|
|
Loading…
Reference in a new issue