pokeemerald/Makefile

333 lines
10 KiB
Makefile
Raw Normal View History

TOOLCHAIN := $(DEVKITARM)
COMPARE ?= 0
ifeq ($(CC),)
HOSTCC := gcc
else
HOSTCC := $(CC)
endif
ifeq ($(CXX),)
HOSTCXX := g++
else
HOSTCXX := $(CXX)
endif
ifneq (,$(wildcard $(TOOLCHAIN)/base_tools))
include $(TOOLCHAIN)/base_tools
2019-06-29 04:26:11 +02:00
else
export PATH := $(TOOLCHAIN)/bin:$(PATH)
PREFIX := arm-none-eabi-
2019-06-29 04:26:11 +02:00
OBJCOPY := $(PREFIX)objcopy
export CC := $(PREFIX)gcc
export AS := $(PREFIX)as
2019-06-29 04:26:11 +02:00
endif
export CPP := $(PREFIX)cpp
export LD := $(PREFIX)ld
2018-09-23 02:56:17 +02:00
ifeq ($(OS),Windows_NT)
EXE := .exe
else
EXE :=
endif
TITLE := POKEMON EMER
GAME_CODE := BPEE
MAKER_CODE := 01
REVISION := 0
MODERN ?= 0
2016-11-01 19:35:16 +01:00
SHELL := /bin/bash -o pipefail
2017-10-11 04:28:32 +02:00
ELF = $(ROM:.gba=.elf)
MAP = $(ROM:.gba=.map)
C_SUBDIR = src
GFLIB_SUBDIR = gflib
2017-10-11 04:28:32 +02:00
ASM_SUBDIR = asm
2019-04-28 19:12:26 +02:00
DATA_SRC_SUBDIR = src/data
2017-10-11 04:28:32 +02:00
DATA_ASM_SUBDIR = data
2017-12-21 23:24:11 +01:00
SONG_SUBDIR = sound/songs
2018-09-23 02:56:17 +02:00
MID_SUBDIR = sound/songs/midi
2017-10-11 04:28:32 +02:00
C_BUILDDIR = $(OBJ_DIR)/$(C_SUBDIR)
GFLIB_BUILDDIR = $(OBJ_DIR)/$(GFLIB_SUBDIR)
2017-10-11 04:28:32 +02:00
ASM_BUILDDIR = $(OBJ_DIR)/$(ASM_SUBDIR)
DATA_ASM_BUILDDIR = $(OBJ_DIR)/$(DATA_ASM_SUBDIR)
2017-12-21 23:24:11 +01:00
SONG_BUILDDIR = $(OBJ_DIR)/$(SONG_SUBDIR)
2018-09-23 02:56:17 +02:00
MID_BUILDDIR = $(OBJ_DIR)/$(MID_SUBDIR)
2017-10-11 04:28:32 +02:00
ASFLAGS := -mcpu=arm7tdmi --defsym MODERN=$(MODERN)
ifeq ($(MODERN),0)
2018-09-23 02:56:17 +02:00
CC1 := tools/agbcc/bin/agbcc$(EXE)
2019-02-01 10:37:50 +01:00
override CFLAGS += -mthumb-interwork -Wimplicit -Wparentheses -Werror -O2 -fhex-asm
ROM := pokeemerald.gba
OBJ_DIR := build/emerald
LIBPATH := -L ../../tools/agbcc/lib
else
CC1 = $(shell $(CC) --print-prog-name=cc1) -quiet
2019-07-02 19:46:53 +02:00
override CFLAGS += -mthumb -mthumb-interwork -O2 -mabi=apcs-gnu -mtune=arm7tdmi -march=armv4t -fno-toplevel-reorder -fno-aggressive-loop-optimizations -Wno-pointer-to-int-cast
ROM := pokeemerald_modern.gba
OBJ_DIR := build/modern
LIBPATH := -L "$(dir $(shell $(CC) -mthumb -print-file-name=libgcc.a))" -L "$(dir $(shell $(CC) -mthumb -print-file-name=libc.a))"
2019-06-29 04:26:11 +02:00
endif
2016-09-03 10:11:14 +02:00
CPPFLAGS := -iquote include -iquote $(GFLIB_SUBDIR) -Wno-trigraphs -DMODERN=$(MODERN)
2019-06-29 04:26:11 +02:00
ifeq ($(MODERN),0)
CPPFLAGS += -I tools/agbcc/include -I tools/agbcc
endif
2016-09-03 10:11:14 +02:00
Decoration + decoration_inventory (#89) * SetDecorationInventoriesPointers * ClearDecorationInventories * CheckHasDecoration * DecorationAdd * DecorationCheckSpace * DecorationRemove * sub_8161A38 * CountDecorations; Funcion renaming * Disassemble decoration data structs, tilemaps, and descriptions * sub_8126968 * sub_81269D4 * through sub_8126A88 * through sub_8126B2C * sub_8126B80 * sub_8126C08 * sub_8126C48 * sub_8126CA4 * sub_8126D10 * sub_8126E44 * sub_8126E8C * sub_8126F68 * sub_8127058 * sub_8127088 * sub_81270E8 * through sub_8127208 * through sub_8127268 * sub_8127284 * through sub_81272F8 * sub_8127330 * through sub_8127480 * sub_81274A0 * sub_8127500; makefile now tells scaninc to scan headers * Actual real fix to mapfile being in build/emerald instead of wd * through sub_812759C * through sub_812764C * through sub_8127744 * through sub_81277BC * sub_81277E8 * sub_8127814 * through sub_81279C4 * through sub_8127ACC * sub_8127B04 * sub_8127B54 * sub_8127B90 * sub_8127D38 * sub_8127E18 * sub_8127F68 * sub_8128060 * ConfigureCameraObjectForPlacingDecoration * SetUpPlacingDecorationPlayerAvatar * sub_812826C * through sub_8128414 * through sub_81284F4 * sub_812853C * sub_8128950 * through sub_8128AAC * through sub_8128BBC * c1_overworld_prev_quest * sub_8128C64 * sub_8128CD4 * sub_8128D10 * sub_8128DB4 * through sub_8128E18 * through sub_8129068 * sub_8129088 * through sub_81291E8 * sub_812925C * sub_81292D0 * sub_81292E8 * gpu_pal_decompress_alloc_tag_and_upload * AddDecorationIconObjectFromIconTable * GetDecorationIconPicOrPalette * AddDecorationIconObjectFromFieldObject * AddDecorationIconObject * through sub_8129708 * sub_81297F8 * sub_81298EC * SetUpPuttingAwayDecorationPlayerAvatar * sub_8129ABC * sub_8129B34 * sub_8129BCC * through sub_8129C74 * through sub_8129D8C * sub_8129E0C * sub_8129E74 * sub_8129F20 * sub_8129FC8 * sub_812A040 * nonmatching sub_812A0E8 * through sub_812A22C * sub_812A25C * sub_812A2C4 * through sub_812A39C * Remaining fns in decoration.s * Decompile decoration headers * Decompile all remaining decoration data that had already been disassembled * Disassemble two data objects * Suggest structure of list menu template * decompile through decoration list menu template * Disassemble decoration icon graphics table * Rip icon gfx * Decompile deco icon table * Decompile more data related to drawing decorations * Decompile gUnknown_085A7250 structs * Decompile two sprite templates * Decompile remaining data in decoration.s * Decompile decoration ewram * deco -> decor
2017-10-23 00:55:07 +02:00
LDFLAGS = -Map ../../$(MAP)
2016-09-03 10:11:14 +02:00
2019-09-09 03:26:46 +02:00
LIB := $(LIBPATH) -lgcc -lc -L../../libagbsyscall -lagbsyscall
2015-11-14 06:57:22 +01:00
2018-08-12 03:29:54 +02:00
SHA1 := $(shell { command -v sha1sum || command -v shasum; } 2>/dev/null) -c
2018-09-23 02:56:17 +02:00
GFX := tools/gbagfx/gbagfx$(EXE)
AIF := tools/aif2pcm/aif2pcm$(EXE)
2018-10-04 06:09:03 +02:00
MID := tools/mid2agb/mid2agb$(EXE)
2018-09-23 02:56:17 +02:00
SCANINC := tools/scaninc/scaninc$(EXE)
PREPROC := tools/preproc/preproc$(EXE)
RAMSCRGEN := tools/ramscrgen/ramscrgen$(EXE)
FIX := tools/gbafix/gbafix$(EXE)
2019-02-02 20:22:41 +01:00
MAPJSON := tools/mapjson/mapjson$(EXE)
2019-04-28 19:12:26 +02:00
JSONPROC := tools/jsonproc/jsonproc$(EXE)
2016-09-03 10:11:14 +02:00
2019-07-23 22:17:00 +02:00
TOOLDIRS := $(filter-out tools/agbcc tools/binutils,$(wildcard tools/*))
TOOLBASE = $(TOOLDIRS:tools/%=%)
TOOLS = $(foreach tool,$(TOOLBASE),tools/$(tool)/$(tool)$(EXE))
MAKEFLAGS += --no-print-directory
2016-09-03 10:11:14 +02:00
# Clear the default suffixes
2015-11-14 06:57:22 +01:00
.SUFFIXES:
# Don't delete intermediate files
.SECONDARY:
# Delete files that weren't built properly
.DELETE_ON_ERROR:
2015-11-14 06:57:22 +01:00
# Secondary expansion is required for dependency variables in object rules.
.SECONDEXPANSION:
2020-05-15 15:53:06 +02:00
.PHONY: all rom clean compare tidy tools mostlyclean clean-tools $(TOOLDIRS) berry_fix libagbsyscall modern
2019-07-23 22:17:00 +02:00
infoshell = $(foreach line, $(shell $1 | sed "s/ /__SPACE__/g"), $(info $(subst __SPACE__, ,$(line))))
# Build tools when building the rom
# Disable dependency scanning for clean/tidy/tools
2020-05-15 15:53:06 +02:00
ifeq (,$(filter-out all rom compare modern berry_fix libagbsyscall,$(MAKECMDGOALS)))
2019-07-23 22:17:00 +02:00
$(call infoshell, $(MAKE) tools)
else
NODEP := 1
endif
2016-09-03 10:11:14 +02:00
2019-09-04 21:11:57 +02:00
C_SRCS_IN := $(wildcard $(C_SUBDIR)/*.c $(C_SUBDIR)/*/*.c $(C_SUBDIR)/*/*/*.c)
C_SRCS := $(foreach src,$(C_SRCS_IN),$(if $(findstring .inc.c,$(src)),,$(src)))
2017-10-11 04:28:32 +02:00
C_OBJS := $(patsubst $(C_SUBDIR)/%.c,$(C_BUILDDIR)/%.o,$(C_SRCS))
2016-09-03 10:11:14 +02:00
GFLIB_SRCS := $(wildcard $(GFLIB_SUBDIR)/*.c)
GFLIB_OBJS := $(patsubst $(GFLIB_SUBDIR)/%.c,$(GFLIB_BUILDDIR)/%.o,$(GFLIB_SRCS))
2019-08-06 20:08:13 +02:00
C_ASM_SRCS += $(wildcard $(C_SUBDIR)/*.s $(C_SUBDIR)/*/*.s $(C_SUBDIR)/*/*/*.s)
C_ASM_OBJS := $(patsubst $(C_SUBDIR)/%.s,$(C_BUILDDIR)/%.o,$(C_ASM_SRCS))
2017-10-11 04:28:32 +02:00
ASM_SRCS := $(wildcard $(ASM_SUBDIR)/*.s)
ASM_OBJS := $(patsubst $(ASM_SUBDIR)/%.s,$(ASM_BUILDDIR)/%.o,$(ASM_SRCS))
2016-11-01 16:29:13 +01:00
2017-10-11 04:28:32 +02:00
DATA_ASM_SRCS := $(wildcard $(DATA_ASM_SUBDIR)/*.s)
DATA_ASM_OBJS := $(patsubst $(DATA_ASM_SUBDIR)/%.s,$(DATA_ASM_BUILDDIR)/%.o,$(DATA_ASM_SRCS))
2016-09-03 10:11:14 +02:00
2017-12-21 23:24:11 +01:00
SONG_SRCS := $(wildcard $(SONG_SUBDIR)/*.s)
SONG_OBJS := $(patsubst $(SONG_SUBDIR)/%.s,$(SONG_BUILDDIR)/%.o,$(SONG_SRCS))
2018-09-23 02:56:17 +02:00
MID_SRCS := $(wildcard $(MID_SUBDIR)/*.mid)
MID_OBJS := $(patsubst $(MID_SUBDIR)/%.mid,$(MID_BUILDDIR)/%.o,$(MID_SRCS))
OBJS := $(C_OBJS) $(GFLIB_OBJS) $(C_ASM_OBJS) $(ASM_OBJS) $(DATA_ASM_OBJS) $(SONG_OBJS) $(MID_OBJS)
2017-10-11 04:28:32 +02:00
OBJS_REL := $(patsubst $(OBJ_DIR)/%,%,$(OBJS))
2015-11-14 06:57:22 +01:00
2018-11-14 23:59:30 +01:00
SUBDIRS := $(sort $(dir $(OBJS)))
2019-04-28 19:12:26 +02:00
AUTO_GEN_TARGETS :=
2018-11-14 23:59:30 +01:00
$(shell mkdir -p $(SUBDIRS))
2019-07-23 22:17:00 +02:00
all: rom
2019-07-20 02:54:02 +02:00
2019-07-23 22:17:00 +02:00
tools: $(TOOLDIRS)
2019-07-20 02:54:02 +02:00
2019-07-23 22:17:00 +02:00
$(TOOLDIRS):
@$(MAKE) -C $@ CC=$(HOSTCC) CXX=$(HOSTCXX)
2019-07-20 02:54:02 +02:00
2019-09-09 03:26:46 +02:00
rom: $(ROM)
ifeq ($(COMPARE),1)
@$(SHA1) rom.sha1
endif
2015-11-14 06:57:22 +01:00
# For contributors to make sure a change didn't affect the contents of the ROM.
compare: ; @$(MAKE) COMPARE=1
2015-11-14 06:57:22 +01:00
2019-07-20 02:54:02 +02:00
clean: mostlyclean clean-tools
clean-tools:
@$(foreach tooldir,$(TOOLDIRS),$(MAKE) clean -C $(tooldir);)
mostlyclean: tidy
2018-01-10 02:37:10 +01:00
rm -f sound/direct_sound_samples/*.bin
rm -f $(MID_SUBDIR)/*.s
2015-11-24 03:31:37 +01:00
find . \( -iname '*.1bpp' -o -iname '*.4bpp' -o -iname '*.8bpp' -o -iname '*.gbapal' -o -iname '*.lz' -o -iname '*.latfont' -o -iname '*.hwjpnfont' -o -iname '*.fwjpnfont' \) -exec rm {} +
2019-01-31 22:51:20 +01:00
rm -f $(DATA_ASM_SUBDIR)/layouts/layouts.inc $(DATA_ASM_SUBDIR)/layouts/layouts_table.inc
rm -f $(DATA_ASM_SUBDIR)/maps/connections.inc $(DATA_ASM_SUBDIR)/maps/events.inc $(DATA_ASM_SUBDIR)/maps/groups.inc $(DATA_ASM_SUBDIR)/maps/headers.inc
find $(DATA_ASM_SUBDIR)/maps \( -iname 'connections.inc' -o -iname 'events.inc' -o -iname 'header.inc' \) -exec rm {} +
2019-04-28 19:12:26 +02:00
rm -f $(AUTO_GEN_TARGETS)
@$(MAKE) clean -C berry_fix
2019-09-09 03:26:46 +02:00
@$(MAKE) clean -C libagbsyscall
2015-11-14 06:57:22 +01:00
2016-09-03 10:11:14 +02:00
tidy:
2017-10-11 04:28:32 +02:00
rm -f $(ROM) $(ELF) $(MAP)
rm -r $(OBJ_DIR)
ifeq ($(MODERN),0)
@$(MAKE) tidy MODERN=1
endif
2016-09-03 10:11:14 +02:00
ifneq ($(MODERN),0)
$(C_BUILDDIR)/berry_crush.o: override CFLAGS += -Wno-address-of-packed-member
endif
2016-09-03 10:11:14 +02:00
2015-11-14 06:57:22 +01:00
include graphics_file_rules.mk
2019-01-31 22:51:20 +01:00
include map_data_rules.mk
include spritesheet_rules.mk
2019-04-28 19:12:26 +02:00
include json_data_rules.mk
2018-09-23 02:56:17 +02:00
include songs.mk
2015-11-14 06:57:22 +01:00
2016-09-03 10:11:14 +02:00
%.s: ;
2015-11-14 06:57:22 +01:00
%.png: ;
%.pal: ;
%.aif: ;
%.1bpp: %.png ; $(GFX) $< $@
%.4bpp: %.png ; $(GFX) $< $@
%.8bpp: %.png ; $(GFX) $< $@
%.gbapal: %.pal ; $(GFX) $< $@
2017-11-11 20:38:53 +01:00
%.gbapal: %.png ; $(GFX) $< $@
%.lz: % ; $(GFX) $< $@
2016-09-03 10:11:14 +02:00
%.rl: % ; $(GFX) $< $@
2018-01-10 02:37:10 +01:00
sound/direct_sound_samples/cry_%.bin: sound/direct_sound_samples/cry_%.aif ; $(AIF) $< $@ --compress
2018-06-21 00:41:17 +02:00
sound/%.bin: sound/%.aif ; $(AIF) $< $@
2019-01-31 22:51:20 +01:00
ifeq ($(MODERN),0)
2017-10-11 04:28:32 +02:00
$(C_BUILDDIR)/libc.o: CC1 := tools/agbcc/bin/old_agbcc
$(C_BUILDDIR)/libc.o: CFLAGS := -O2
2016-11-01 16:17:40 +01:00
2017-10-11 04:28:32 +02:00
$(C_BUILDDIR)/siirtc.o: CFLAGS := -mthumb-interwork
2017-10-11 04:28:32 +02:00
$(C_BUILDDIR)/agb_flash.o: CFLAGS := -O -mthumb-interwork
$(C_BUILDDIR)/agb_flash_1m.o: CFLAGS := -O -mthumb-interwork
$(C_BUILDDIR)/agb_flash_mx.o: CFLAGS := -O -mthumb-interwork
$(C_BUILDDIR)/m4a.o: CC1 := tools/agbcc/bin/old_agbcc
2017-11-04 02:56:18 +01:00
$(C_BUILDDIR)/record_mixing.o: CFLAGS += -ffreestanding
2020-02-16 19:49:36 +01:00
$(C_BUILDDIR)/librfu_intr.o: CC1 := tools/agbcc/bin/agbcc_arm
$(C_BUILDDIR)/librfu_intr.o: CFLAGS := -O2 -mthumb-interwork -quiet
else
$(C_BUILDDIR)/librfu_intr.o: CFLAGS := -mthumb-interwork -O2 -mabi=apcs-gnu -mtune=arm7tdmi -march=armv4t -fno-toplevel-reorder -fno-aggressive-loop-optimizations -Wno-pointer-to-int-cast
endif
2017-11-04 02:56:18 +01:00
2018-11-15 01:12:12 +01:00
ifeq ($(NODEP),1)
2017-10-11 04:28:32 +02:00
$(C_BUILDDIR)/%.o: c_dep :=
2018-11-15 01:12:12 +01:00
else
$(C_BUILDDIR)/%.o: c_dep = $(shell [[ -f $(C_SUBDIR)/$*.c ]] && $(SCANINC) -I include -I tools/agbcc/include -I gflib $(C_SUBDIR)/$*.c)
2017-04-05 22:51:55 +02:00
endif
2019-01-06 14:01:22 +01:00
ifeq ($(DINFO),1)
2019-01-06 14:10:33 +01:00
override CFLAGS += -g
2019-01-06 14:01:22 +01:00
endif
2017-10-11 04:28:32 +02:00
$(C_BUILDDIR)/%.o : $(C_SUBDIR)/%.c $$(c_dep)
@$(CPP) $(CPPFLAGS) $< -o $(C_BUILDDIR)/$*.i
@$(PREPROC) $(C_BUILDDIR)/$*.i charmap.txt | $(CC1) $(CFLAGS) -o $(C_BUILDDIR)/$*.s
@echo -e ".text\n\t.align\t2, 0\n" >> $(C_BUILDDIR)/$*.s
$(AS) $(ASFLAGS) -o $@ $(C_BUILDDIR)/$*.s
ifeq ($(NODEP),1)
$(GFLIB_BUILDDIR)/%.o: c_dep :=
else
$(GFLIB_BUILDDIR)/%.o: c_dep = $(shell [[ -f $(GFLIB_SUBDIR)/$*.c ]] && $(SCANINC) -I include -I tools/agbcc/include -I gflib $(GFLIB_SUBDIR)/$*.c)
endif
$(GFLIB_BUILDDIR)/%.o : $(GFLIB_SUBDIR)/%.c $$(c_dep)
@$(CPP) $(CPPFLAGS) $< -o $(GFLIB_BUILDDIR)/$*.i
@$(PREPROC) $(GFLIB_BUILDDIR)/$*.i charmap.txt | $(CC1) $(CFLAGS) -o $(GFLIB_BUILDDIR)/$*.s
@echo -e ".text\n\t.align\t2, 0\n" >> $(GFLIB_BUILDDIR)/$*.s
$(AS) $(ASFLAGS) -o $@ $(GFLIB_BUILDDIR)/$*.s
2019-08-06 20:08:13 +02:00
ifeq ($(NODEP),1)
$(C_BUILDDIR)/%.o: c_asm_dep :=
else
$(C_BUILDDIR)/%.o: c_asm_dep = $(shell [[ -f $(C_SUBDIR)/$*.s ]] && $(SCANINC) -I "" $(C_SUBDIR)/$*.s)
2019-08-06 20:08:13 +02:00
endif
$(C_BUILDDIR)/%.o: $(C_SUBDIR)/%.s $$(c_asm_dep)
$(AS) $(ASFLAGS) -o $@ $<
2018-11-15 01:12:12 +01:00
ifeq ($(NODEP),1)
2017-10-11 04:28:32 +02:00
$(ASM_BUILDDIR)/%.o: asm_dep :=
2018-11-15 01:12:12 +01:00
else
2019-03-04 06:21:34 +01:00
$(ASM_BUILDDIR)/%.o: asm_dep = $(shell $(SCANINC) -I "" $(ASM_SUBDIR)/$*.s)
2017-01-14 20:53:20 +01:00
endif
2015-11-14 06:57:22 +01:00
2017-10-11 04:28:32 +02:00
$(ASM_BUILDDIR)/%.o: $(ASM_SUBDIR)/%.s $$(asm_dep)
2015-11-14 06:57:22 +01:00
$(AS) $(ASFLAGS) -o $@ $<
2018-11-15 01:12:12 +01:00
ifeq ($(NODEP),1)
2017-10-11 04:28:32 +02:00
$(DATA_ASM_BUILDDIR)/%.o: data_dep :=
2018-11-15 01:12:12 +01:00
else
2019-03-04 06:21:34 +01:00
$(DATA_ASM_BUILDDIR)/%.o: data_dep = $(shell $(SCANINC) -I include -I "" $(DATA_ASM_SUBDIR)/$*.s)
2017-10-11 04:28:32 +02:00
endif
$(DATA_ASM_BUILDDIR)/%.o: $(DATA_ASM_SUBDIR)/%.s $$(data_dep)
2017-12-05 18:55:48 +01:00
$(PREPROC) $< charmap.txt | $(CPP) -I include | $(AS) $(ASFLAGS) -o $@
2016-09-03 10:11:14 +02:00
2017-12-21 23:24:11 +01:00
$(SONG_BUILDDIR)/%.o: $(SONG_SUBDIR)/%.s
$(AS) $(ASFLAGS) -I sound -o $@ $<
2017-10-11 04:28:32 +02:00
$(OBJ_DIR)/sym_bss.ld: sym_bss.txt
$(RAMSCRGEN) .bss $< ENGLISH > $@
2016-11-01 19:35:16 +01:00
2017-10-11 04:28:32 +02:00
$(OBJ_DIR)/sym_common.ld: sym_common.txt $(C_OBJS) $(wildcard common_syms/*.txt)
$(RAMSCRGEN) COMMON $< ENGLISH -c $(C_BUILDDIR),common_syms > $@
2016-11-01 19:35:16 +01:00
2017-10-11 04:28:32 +02:00
$(OBJ_DIR)/sym_ewram.ld: sym_ewram.txt
$(RAMSCRGEN) ewram_data $< ENGLISH > $@
2016-11-01 19:35:16 +01:00
ifeq ($(MODERN),0)
LD_SCRIPT := ld_script.txt
LD_SCRIPT_DEPS := $(OBJ_DIR)/sym_bss.ld $(OBJ_DIR)/sym_common.ld $(OBJ_DIR)/sym_ewram.ld
else
LD_SCRIPT := ld_script_modern.txt
LD_SCRIPT_DEPS :=
endif
$(OBJ_DIR)/ld_script.ld: $(LD_SCRIPT) $(LD_SCRIPT_DEPS)
cd $(OBJ_DIR) && sed "s#tools/#../../tools/#g" ../../$(LD_SCRIPT) > ld_script.ld
2016-11-01 19:35:16 +01:00
2019-09-09 03:41:40 +02:00
$(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS) berry_fix libagbsyscall
cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) $(LIB)
$(FIX) $@ -t"$(TITLE)" -c$(GAME_CODE) -m$(MAKER_CODE) -r$(REVISION) --silent
2016-11-01 19:35:16 +01:00
2017-10-11 04:28:32 +02:00
$(ROM): $(ELF)
$(OBJCOPY) -O binary $< $@
$(FIX) $@ -p --silent
modern: ; @$(MAKE) MODERN=1
berry_fix/berry_fix.gba: berry_fix
berry_fix:
2019-09-09 03:26:46 +02:00
@$(MAKE) -C berry_fix COMPARE=$(COMPARE) TOOLCHAIN=$(TOOLCHAIN)
libagbsyscall:
@$(MAKE) -C libagbsyscall TOOLCHAIN=$(TOOLCHAIN)