LADX-Disassembly/Makefile

164 lines
4.1 KiB
Makefile
Raw Normal View History

.POSIX:
.SUFFIXES:
.PRECIOUS: %.2bpp
.PHONY: default build build-all test test-all all clean
2020-06-25 19:51:58 +00:00
#
# Dev tools binaries and options
#
2BPP := rgbgfx
ASM := rgbasm
ASFLAGS := --export-all
LD := rgblink
LDFLAGS :=
FX := rgbfix
FXFLAGS := \
2020-06-21 13:43:44 +00:00
--color-compatible \
--sgb-compatible \
--ram-size 0x03 \
--old-licensee 0x33 \
--new-licensee "01" \
--mbc-type 0x1B \
--pad-value 0xFF \
--validate
# Default target: build and test only the US 1.0 revision.
# (Use `make all` to build and test all targets.)
default: build test
#
# Generic rules
#
# Dependencies for the base version (English 1.0)
asm_files = $(shell find src -type f -name '*.asm')
gfx_files = $(shell find src/gfx -type f -name '*.png')
# Compile a PNG file to a 2BPP file
2016-10-08 22:55:07 +00:00
%.2bpp: %.png
$(2BPP) -o $@ $<
# Compile all dependencies (ASM, 2BPP) into an object file
# (More specific rules may add more pre-requisites.)
src/main.%.o: src/main.asm $(asm_files) $(gfx_files:.png=.2bpp)
$(ASM) $(ASFLAGS) $($*_ASFLAGS) -i src/ -o $@ $<
# Link an object file to a GBC file
%.gbc: src/main.%.o
$(LD) $(LDFLAGS) $($*_LDFLAGS) -n $*.sym -o $@ $^
$(FX) $(FXFLAGS) $($*_FXFLAGS) $@
# Make may attempt to re-generate the Makefile; prevent this.
Makefile: ;
2020-06-01 17:41:37 +00:00
#
# Japanese
#
azlj_asm = $(shell find revisions/J0 -type f -name '*.asm')
azlj_gfx = $(shell find revisions/J0 -type f -name '*.png')
2020-06-01 17:41:37 +00:00
games += azlj.gbc
src/main.azlj.o: $(azlj_asm) $(azlj_gfx:.png=.2bpp)
azlj_ASFLAGS = -DLANG=JP -DVERSION=0 -i revisions/J0/src/
azlj_FXFLAGS = --rom-version 0 --title "ZELDA"
2020-06-01 17:41:37 +00:00
games += azlj-r1.gbc
src/main.azlj-r1.o: $(azlj_asm) $(azlj_gfx:.png=.2bpp)
azlj-r1_ASFLAGS = -DLANG=JP -DVERSION=1 -i revisions/J0/src/
azlj-r1_FXFLAGS = --rom-version 1 --title "ZELDA"
2020-06-01 17:41:37 +00:00
games += azlj-r2.gbc
src/main.azlj-r2.o: $(azlj_asm) $(azlj_gfx:.png=.2bpp)
azlj-r2_ASFLAGS = -DLANG=JP -DVERSION=2 -i revisions/J0/src/
azlj-r2_FXFLAGS = --rom-version 2 --title "ZELDA" --game-id "AZLJ"
2020-06-01 17:41:37 +00:00
#
# German
#
azlg_asm = $(shell find revisions/G0 -type f -name '*.asm')
azlg_gfx = $(shell find revisions/G0 -type f -name '*.png')
2020-06-01 17:41:37 +00:00
games += azlg.gbc
src/main.azlg.o: $(azlg_asm) $(azlg_gfx:.png=.2bpp)
azlg_ASFLAGS = -DLANG=DE -DVERSION=0 -i revisions/G0/src/
azlg_FXFLAGS = --rom-version 0 --non-japanese --title "ZELDA"
2020-06-01 17:41:37 +00:00
games += azlg-r1.gbc
src/main.azlg-r1.o: $(azlg_asm) $(azlg_gfx:.png=.2bpp) azlj-r2.gbc
azlg-r1_ASFLAGS = -DLANG=DE -DVERSION=1 -i revisions/G0/src/
azlg-r1_LDFLAGS = -O azlj-r2.gbc
azlg-r1_FXFLAGS = --rom-version 1 --non-japanese --title "ZELDA" --game-id "AZLD"
2020-06-01 17:41:37 +00:00
#
# French
#
azlf_asm = $(shell find revisions/F0 -type f -name '*.asm')
azlf_gfx = $(shell find revisions/F0 -type f -name '*.png')
2020-06-01 17:41:37 +00:00
games += azlf.gbc
src/main.azlf.o: $(azlf_asm) $(azlf_gfx:.png=.2bpp)
azlf_ASFLAGS = -DLANG=FR -DVERSION=0 -i revisions/F0/src/
azlf_FXFLAGS = --rom-version 0 --non-japanese --title "ZELDA"
2020-06-01 17:41:37 +00:00
games += azlf-r1.gbc
src/main.azlf-r1.o: $(azlf_asm) $(azlf_gfx:.png=.2bpp) azlg-r1.gbc
azlf-r1_ASFLAGS = -DLANG=FR -DVERSION=1 -i revisions/F0/src/
azlf-r1_LDFLAGS = -O azlg-r1.gbc
azlf-r1_FXFLAGS = --rom-version 1 --non-japanese --title "ZELDA" --game-id "AZLF"
2020-06-01 17:41:37 +00:00
#
# English
#
games += azle.gbc
src/main.azle.o:
azle_ASFLAGS = -DLANG=EN -DVERSION=0
azle_FXFLAGS = --rom-version 0 --non-japanese --title "ZELDA"
2020-06-01 17:41:37 +00:00
games += azle-r1.gbc
src/main.azle-r1.o:
azle-r1_ASFLAGS = -DLANG=EN -DVERSION=1
azle-r1_FXFLAGS = --rom-version 1 --non-japanese --title "ZELDA"
2020-06-01 17:41:37 +00:00
games += azle-r2.gbc
src/main.azle-r2.o: azlf-r1.gbc
azle-r2_ASFLAGS = -DLANG=EN -DVERSION=2
azle-r2_LDFLAGS = -O azlf-r1.gbc
azle-r2_FXFLAGS = --rom-version 2 --non-japanese --title "ZELDA" --game-id "AZLE"
2020-06-01 17:41:37 +00:00
#
# Main targets
#
# By default, build the US 1.0 revision.
build: azle.gbc
# Build all revisions.
build-all: $(games)
# Test the default revision.
test: build
@tools/compare.sh ladx.md5 azle.gbc
# Test all revisions.
test-all: build-all
@tools/compare.sh ladx.md5 $(games)
all: build-all test-all
clean:
rm -f $(games)
rm -f $(games:%.gbc=src/main.%.o)
rm -f $(games:.gbc=.map)
rm -f $(games:.gbc=.sym)
rm -f $(gfx_files:.png=.2bpp)
rm -f $(azlj_gfx:.png=.2bpp)
rm -f $(azlg_gfx:.png=.2bpp)
rm -f $(azlf_gfx:.png=.2bpp)