Match LZ compressed files (#724)

Replace lzcomp with new version and match all LZ compressed files
This commit is contained in:
aaaaaa123456789 2020-05-23 14:30:04 -03:00 committed by GitHub
parent f1513ae8ad
commit 2b7237e299
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
776 changed files with 1147 additions and 520 deletions

View File

@ -108,16 +108,13 @@ pokecrystal-au.gbc: $(crystal_au_obj) layout.link
$(RGBFIX) -Cjv -t PM_CRYSTAL -i BYTU -k 01 -l 0x33 -m 0x10 -r 3 -p 0 $@
# For files that the compressor can't match, there will be a .lz file suffixed with the md5 hash of the correct uncompressed file.
# If the hash of the uncompressed file matches, use this .lz instead.
# This allows pngs to be used for compressed graphics and still match.
### LZ compression rules
# Delete this line if you don't care about matching and just want optimal compression.
include gfx/lz.mk
%.lz: hash = $(shell tools/md5 $(*D)/$(*F) | sed "s/\(.\{8\}\).*/\1/")
%.lz: %
$(eval filename := $@.$(hash))
$(if $(wildcard $(filename)),\
cp $(filename) $@,\
tools/lzcomp -- $< $@)
tools/lzcomp $(LZFLAGS) -- $< $@
### Pokemon pic animation rules

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More