2017-05-29 23:22:24 -04:00
|
|
|
MD5 := md5sum -c
|
2014-03-31 21:06:34 -04:00
|
|
|
|
2016-03-01 20:58:00 -05:00
|
|
|
.SUFFIXES:
|
2017-05-29 19:15:34 -04:00
|
|
|
.PHONY: all clean tools compare crystal crystal11
|
2013-09-11 01:20:52 -04:00
|
|
|
.SECONDEXPANSION:
|
2017-05-28 01:22:17 -04:00
|
|
|
.PRECIOUS:
|
|
|
|
.SECONDARY:
|
2014-03-31 21:06:34 -04:00
|
|
|
|
2013-06-21 00:58:35 -04:00
|
|
|
|
2014-06-15 16:20:40 -07:00
|
|
|
crystal_obj := \
|
2013-11-23 02:54:02 -05:00
|
|
|
wram.o \
|
|
|
|
main.o \
|
2014-04-29 17:43:24 -04:00
|
|
|
lib/mobile/main.o \
|
2013-11-29 02:30:08 -05:00
|
|
|
home.o \
|
2013-11-29 01:51:27 -05:00
|
|
|
audio.o \
|
2016-01-29 16:24:02 -05:00
|
|
|
maps.o \
|
|
|
|
engine/events.o \
|
|
|
|
engine/credits.o \
|
|
|
|
data/egg_moves.o \
|
|
|
|
data/evos_attacks.o \
|
|
|
|
data/pokedex/entries.o \
|
2013-11-29 02:11:40 -05:00
|
|
|
misc/crystal_misc.o \
|
2015-12-18 00:59:03 -07:00
|
|
|
text/common_text.o \
|
2013-11-29 02:11:40 -05:00
|
|
|
gfx/pics.o
|
2013-11-23 02:54:02 -05:00
|
|
|
|
2016-02-10 00:31:32 -05:00
|
|
|
crystal11_obj := $(crystal_obj:.o=11.o)
|
2013-09-10 18:24:44 -04:00
|
|
|
|
2013-12-10 02:02:16 -05:00
|
|
|
|
2017-05-29 23:22:24 -04:00
|
|
|
roms := pokecrystal.gbc pokecrystal11.gbc
|
2013-12-10 02:02:16 -05:00
|
|
|
|
2017-05-29 23:22:24 -04:00
|
|
|
all: crystal
|
2013-12-10 02:02:16 -05:00
|
|
|
crystal: pokecrystal.gbc
|
2015-11-15 15:53:49 -05:00
|
|
|
crystal11: pokecrystal11.gbc
|
|
|
|
|
2013-12-02 15:23:34 -05:00
|
|
|
clean:
|
2016-02-10 00:31:32 -05:00
|
|
|
rm -f $(roms) $(crystal_obj) $(crystal11_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
|
2013-12-02 15:23:34 -05:00
|
|
|
|
2017-05-29 23:22:24 -04:00
|
|
|
compare: $(roms)
|
2015-03-11 22:37:36 -07:00
|
|
|
@$(MD5) roms.md5
|
2013-09-11 01:20:52 -04:00
|
|
|
|
2017-05-29 19:15:34 -04:00
|
|
|
tools:
|
|
|
|
make -C tools/
|
2016-08-24 21:56:07 -04:00
|
|
|
|
2017-05-29 19:15:34 -04:00
|
|
|
%11.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
|
|
|
|
%11.o: %.asm $$(dep)
|
2016-01-29 01:10:41 -05:00
|
|
|
rgbasm -D CRYSTAL11 -o $@ $<
|
2016-03-01 21:01:34 -05:00
|
|
|
|
2016-08-24 21:56:07 -04:00
|
|
|
%.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
|
2016-03-01 21:01:34 -05:00
|
|
|
%.o: %.asm $$(dep)
|
2016-01-29 16:24:02 -05:00
|
|
|
rgbasm -o $@ $<
|
|
|
|
|
2015-02-14 01:51:34 -07:00
|
|
|
pokecrystal11.gbc: $(crystal11_obj)
|
2016-03-16 17:54:20 -04:00
|
|
|
rgblink -n pokecrystal11.sym -m pokecrystal11.map -o $@ $^
|
2015-02-14 01:51:34 -07:00
|
|
|
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -n 1 -p 0 -r 3 -t PM_CRYSTAL $@
|
|
|
|
|
2014-06-15 16:20:40 -07:00
|
|
|
pokecrystal.gbc: $(crystal_obj)
|
2016-03-16 17:54:20 -04:00
|
|
|
rgblink -n pokecrystal.sym -m pokecrystal.map -o $@ $^
|
2012-05-30 14:13:14 -05:00
|
|
|
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
|
2013-12-10 02:02:16 -05:00
|
|
|
|
2017-05-28 13:47:08 -04:00
|
|
|
|
|
|
|
# For files that the compressor can't match, there will be a .lz file suffixed with the 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: hash = $(shell md5sum $(*D)/$(*F) | sed "s/\(.\{8\}\).*/\1/")
|
2016-08-24 21:56:07 -04:00
|
|
|
%.lz: %
|
2017-05-28 13:47:08 -04:00
|
|
|
$(eval filename := $@.$(hash))
|
2017-06-20 23:36:28 -04:00
|
|
|
$(if $(wildcard $(filename)),cp $(filename) $@,tools/lzcomp $< $@)
|
2017-05-28 13:47:08 -04:00
|
|
|
|
2017-05-29 20:14:23 -04:00
|
|
|
# Terrible hacks to match animations. Delete these rules if you don't care about matching.
|
2017-05-28 13:47:08 -04:00
|
|
|
|
2017-05-29 20:14:23 -04:00
|
|
|
# Dewgong has an unused tile id in its last frame. The tile itself is missing.
|
|
|
|
gfx/pics/dewgong/frames.asm: gfx/pics/dewgong/front.animated.tilemap gfx/pics/dewgong/front.dimensions
|
|
|
|
tools/pokemon_animation -f $^ > $@
|
|
|
|
echo " db \$$4d" >> $@
|
|
|
|
|
|
|
|
# Lugia has two unused tile ids in its last frame. The tiles themselves are missing.
|
|
|
|
gfx/pics/lugia/frames.asm: gfx/pics/lugia/front.animated.tilemap gfx/pics/lugia/front.dimensions
|
|
|
|
tools/pokemon_animation -f $^ > $@
|
|
|
|
echo " db \$$5e, \$$59" >> $@
|
|
|
|
|
|
|
|
# Girafarig has a redundant tile after the end. It is used in two frames, so it must be injected into the generated graphics.
|
|
|
|
# This is more involved, so it's hacked into pokemon_animation_graphics.
|
|
|
|
gfx/pics/girafarig/front.animated.2bpp: gfx/pics/girafarig/front.2bpp gfx/pics/girafarig/front.dimensions
|
|
|
|
tools/pokemon_animation_graphics --girafarig -o $@ $^
|
|
|
|
gfx/pics/girafarig/front.animated.tilemap: gfx/pics/girafarig/front.2bpp gfx/pics/girafarig/front.dimensions
|
|
|
|
tools/pokemon_animation_graphics --girafarig -t $@ $^
|
2016-08-24 21:56:07 -04:00
|
|
|
|
2017-05-29 20:14:23 -04:00
|
|
|
|
|
|
|
# Pokemon pic graphics rules
|
2016-08-24 22:03:12 -04:00
|
|
|
|
2017-05-28 15:53:06 -04:00
|
|
|
gfx/pics/%/normal.gbcpal: gfx/pics/%/front.png
|
|
|
|
rgbgfx -p $@ $<
|
2017-05-28 13:47:08 -04:00
|
|
|
gfx/pics/%/normal.pal: gfx/pics/%/normal.gbcpal
|
2016-08-24 21:56:07 -04:00
|
|
|
tools/palette -p $< > $@
|
2017-05-28 01:20:46 -04:00
|
|
|
gfx/pics/%/back.2bpp: gfx/pics/%/back.png
|
|
|
|
rgbgfx -h -o $@ $<
|
2016-08-24 21:56:07 -04:00
|
|
|
gfx/pics/%/bitmask.asm: gfx/pics/%/front.animated.tilemap gfx/pics/%/front.dimensions
|
|
|
|
tools/pokemon_animation -b $^ > $@
|
|
|
|
gfx/pics/%/frames.asm: gfx/pics/%/front.animated.tilemap gfx/pics/%/front.dimensions
|
|
|
|
tools/pokemon_animation -f $^ > $@
|
|
|
|
gfx/pics/%/front.animated.2bpp: gfx/pics/%/front.2bpp gfx/pics/%/front.dimensions
|
|
|
|
tools/pokemon_animation_graphics -o $@ $^
|
|
|
|
gfx/pics/%/front.animated.tilemap: gfx/pics/%/front.2bpp gfx/pics/%/front.dimensions
|
|
|
|
tools/pokemon_animation_graphics -t $@ $^
|
2017-05-28 01:20:46 -04:00
|
|
|
# Don't use -h, pokemon_animation_graphics takes care of it
|
|
|
|
#gfx/pics/%/front.2bpp: gfx/pics/%/front.png
|
|
|
|
# rgbgfx -o $@ $<
|
2016-08-24 22:03:12 -04:00
|
|
|
|
2017-05-28 13:47:08 -04:00
|
|
|
|
|
|
|
# Misc file-specific graphics rules
|
|
|
|
|
2017-06-20 23:36:28 -04:00
|
|
|
gfx/shrink%.2bpp: rgbgfx += -h
|
2016-08-24 22:03:12 -04:00
|
|
|
|
2017-06-20 23:36:28 -04:00
|
|
|
gfx/trainers/%.2bpp: rgbgfx += -h
|
2017-06-22 23:40:22 -04:00
|
|
|
gfx/trainers/%.pal: gfx/trainers/%.gbcpal
|
|
|
|
tools/palette -p $< > $@
|
2017-05-28 23:23:11 -04:00
|
|
|
|
2017-06-20 23:36:28 -04:00
|
|
|
gfx/mail/0b9b46.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/0b9d46.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/0b9d86.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/0b9dc6.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/0b9cfe.1bpp: tools/gfx += --remove-whitespace
|
2017-05-28 23:23:11 -04:00
|
|
|
|
2017-06-20 23:42:29 -04:00
|
|
|
gfx/pokedex/%.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
|
2017-06-21 23:45:01 -04:00
|
|
|
gfx/title/crystal.2bpp: tools/gfx += --interleave --width=48
|
|
|
|
gfx/title/old_fg.2bpp: tools/gfx += --interleave --width=64
|
|
|
|
gfx/title/logo.2bpp: rgbgfx += -x 4
|
|
|
|
|
2017-06-22 23:29:36 -04:00
|
|
|
gfx/trade/ball.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
|
2017-06-21 23:45:01 -04:00
|
|
|
|
2017-05-29 20:14:23 -04:00
|
|
|
%.bin: ;
|
|
|
|
%.blk: ;
|
2017-05-28 23:23:11 -04:00
|
|
|
|
2017-05-29 20:14:23 -04:00
|
|
|
%.2bpp: %.png
|
2017-06-20 23:36:28 -04:00
|
|
|
rgbgfx $(rgbgfx) -o $@ $<
|
|
|
|
$(if $(tools/gfx),tools/gfx $(tools/gfx) -o $@ $@)
|
|
|
|
|
2017-05-29 20:14:23 -04:00
|
|
|
%.1bpp: %.png
|
2017-06-20 23:36:28 -04:00
|
|
|
rgbgfx $(rgbgfx) -d1 -o $@ $<
|
|
|
|
$(if $(tools/gfx),tools/gfx $(tools/gfx) -d1 -o $@ $@)
|
|
|
|
|
2017-05-29 20:14:23 -04:00
|
|
|
%.tilemap: %.png
|
|
|
|
rgbgfx -t $@ $<
|
|
|
|
%.gbcpal: %.png
|
|
|
|
rgbgfx -p $@ $<
|
|
|
|
%.pal: %.gbcpal
|
|
|
|
tools/palette $< > $@
|
|
|
|
%.dimensions: %.png
|
|
|
|
tools/png_dimensions $< $@
|