pokeemerald/Makefile

193 lines
5.5 KiB
Makefile
Raw Normal View History

include $(DEVKITARM)/base_tools
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
2016-11-01 19:35:16 +01:00
SHELL := /bin/bash -o pipefail
2017-10-11 04:28:32 +02:00
ROM := pokeemerald.gba
OBJ_DIR := build/emerald
ELF = $(ROM:.gba=.elf)
MAP = $(ROM:.gba=.map)
C_SUBDIR = src
ASM_SUBDIR = asm
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)
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
2018-09-23 02:56:17 +02:00
CC1 := tools/agbcc/bin/agbcc$(EXE)
override CFLAGS += -mthumb-interwork -Wimplicit -Wparentheses -Werror -O2 -fhex-asm
2016-09-03 10:11:14 +02:00
2018-12-29 12:46:03 +01:00
CPPFLAGS := -I tools/agbcc/include -I tools/agbcc -iquote include
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
LIB := -L ../../tools/agbcc/lib -lgcc -lc
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)
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:
2016-09-03 10:11:14 +02:00
.PHONY: rom clean compare tidy
2018-11-14 23:59:30 +01:00
C_SRCS := $(wildcard $(C_SUBDIR)/*.c $(C_SUBDIR)/*/*.c $(C_SUBDIR)/*/*/*.c)
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
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))
2018-11-14 23:59:30 +01:00
OBJS := $(C_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)))
$(shell mkdir -p $(SUBDIRS))
rom: $(ROM)
2015-11-14 06:57:22 +01:00
# For contributors to make sure a change didn't affect the contents of the ROM.
compare: $(ROM)
2015-11-14 06:57:22 +01:00
@$(SHA1) rom.sha1
2016-11-01 19:35:16 +01:00
clean: tidy
2018-01-10 02:37:10 +01:00
rm -f sound/direct_sound_samples/*.bin
2018-09-24 06:52:04 +02:00
rm -f $(SONG_OBJS) $(MID_OBJS) $(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 {} +
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)
2017-10-09 08:19:44 +02:00
rm -r build/*
2016-09-03 10:11:14 +02:00
2015-11-14 06:57:22 +01:00
include graphics_file_rules.mk
include spritesheet_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) $< $@
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
2017-10-11 04:28:32 +02:00
$(C_BUILDDIR)/m4a_2.o: CC1 := tools/agbcc/bin/old_agbcc
$(C_BUILDDIR)/m4a_4.o: CC1 := tools/agbcc/bin/old_agbcc
2017-11-04 02:56:18 +01:00
$(C_BUILDDIR)/record_mixing.o: CFLAGS += -ffreestanding
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 $(SCANINC) -I include $(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
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
$(ASM_BUILDDIR)/%.o: asm_dep = $(shell $(SCANINC) $(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
$(DATA_ASM_BUILDDIR)/%.o: data_dep = $(shell $(SCANINC) $(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
2017-10-11 04:28:32 +02:00
$(OBJ_DIR)/ld_script.ld: ld_script.txt $(OBJ_DIR)/sym_bss.ld $(OBJ_DIR)/sym_common.ld $(OBJ_DIR)/sym_ewram.ld
cd $(OBJ_DIR) && sed "s#tools/#../../tools/#g" ../../ld_script.txt > ld_script.ld
2016-11-01 19:35:16 +01:00
2017-10-11 04:28:32 +02:00
$(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS)
cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) $(LIB)
2016-11-01 19:35:16 +01:00
2017-10-11 04:28:32 +02:00
$(ROM): $(ELF)
$(OBJCOPY) -O binary $< $@
2018-09-10 20:15:53 +02:00
$(FIX) $@ -p -t"$(TITLE)" -c$(GAME_CODE) -m$(MAKER_CODE) -r$(REVISION) --silent