pokecrystal-board/Makefile

110 lines
2.6 KiB
Makefile
Raw Normal View History

2015-03-11 22:37:36 -07:00
MD5 := md5sum -c --quiet
.SUFFIXES:
2016-08-24 18:56:07 -07:00
.PHONY: all clean tools crystal crystal11
.SECONDEXPANSION:
.PRECIOUS:
.SECONDARY:
crystal_obj := \
2013-11-22 23:54:02 -08:00
wram.o \
main.o \
lib/mobile/main.o \
2013-11-28 23:30:08 -08:00
home.o \
2013-11-28 22:51:27 -08:00
audio.o \
maps.o \
engine/events.o \
engine/credits.o \
data/egg_moves.o \
data/evos_attacks.o \
data/pokedex/entries.o \
2013-11-28 23:11:40 -08:00
misc/crystal_misc.o \
text/common_text.o \
2013-11-28 23:11:40 -08:00
gfx/pics.o
2013-11-22 23:54:02 -08:00
crystal11_obj := $(crystal_obj:.o=11.o)
roms := pokecrystal.gbc
all: $(roms)
crystal: pokecrystal.gbc
2015-11-15 12:53:49 -08:00
crystal11: pokecrystal11.gbc
clean:
rm -f $(roms) $(crystal_obj) $(crystal11_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
2015-03-11 22:37:36 -07:00
compare: pokecrystal.gbc pokecrystal11.gbc
@$(MD5) roms.md5
2016-08-24 18:56:07 -07:00
tools: tools/lzcomp tools/png_dimensions tools/scan_includes tools/palette tools/pokemon_animation tools/pokemon_animation_graphics
tools/%: tools/%.c
$(CC) -o $@ $<
%.asm: ;
2016-08-24 18:56:07 -07:00
%11.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
%11.o: %.asm $$(dep)
rgbasm -D CRYSTAL11 -o $@ $<
2016-08-24 18:56:07 -07:00
%.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
%.o: %.asm $$(dep)
rgbasm -o $@ $<
2015-02-14 00:51:34 -08:00
pokecrystal11.gbc: $(crystal11_obj)
rgblink -n pokecrystal11.sym -m pokecrystal11.map -o $@ $^
2015-02-14 00:51:34 -08:00
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -n 1 -p 0 -r 3 -t PM_CRYSTAL $@
pokecrystal.gbc: $(crystal_obj)
rgblink -n pokecrystal.sym -m pokecrystal.map -o $@ $^
2012-05-30 12:13:14 -07:00
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
2013-12-02 14:57:05 -08:00
%.bin: ;
%.blk: ;
2016-08-24 18:56:07 -07:00
%.2bpp: %.png
rgbgfx -o $@ $<
%.1bpp: %.png
rgbgfx -d1 -o $@ $<
%.lz: %
2017-04-27 21:37:42 -07:00
tools/lzcomp $< $@
2016-08-24 18:56:07 -07:00
%.dimensions: %.png
tools/png_dimensions $< $@
%.tilemap: %.png
rgbgfx -t $@ $<
%.pal: %.pal.bin
tools/palette $< > $@
%.pal.bin: %.png
rgbgfx -p $@ $<
2017-05-27 22:20:46 -07:00
gfx/pics/%/normal.pal: gfx/pics/%/normal.pal.bin
2016-08-24 18:56:07 -07:00
tools/palette -p $< > $@
gfx/pics/%/normal.pal.bin: gfx/pics/%/front.png
rgbgfx -p $@ $<
2017-05-27 22:20:46 -07:00
gfx/pics/%/back.2bpp: gfx/pics/%/back.png
rgbgfx -h -o $@ $<
2016-08-24 18:56:07 -07: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-27 22:20:46 -07:00
# Don't use -h, pokemon_animation_graphics takes care of it
#gfx/pics/%/front.2bpp: gfx/pics/%/front.png
# rgbgfx -o $@ $<
gfx/pics/%/front.2bpp.lz: gfx/pics/%/front.animated.2bpp
tools/lzcomp $< $@
gfx/shrink1.2bpp: gfx/shrink1.png
rgbgfx -h -o $@ $<
gfx/shrink2.2bpp: gfx/shrink2.png
rgbgfx -h -o $@ $<
gfx/trainers/%.2bpp: gfx/trainers/%.png
rgbgfx -h -o $@ $<