2022-08-25 14:29:05 +02:00
|
|
|
PREFIX :=
|
2022-05-19 19:14:13 +02:00
|
|
|
OBJCOPY := $(PREFIX)objcopy
|
2022-08-25 14:29:05 +02:00
|
|
|
CC := $(PREFIX)gcc
|
2022-05-19 19:14:13 +02:00
|
|
|
AS := $(PREFIX)as
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
SDL_DIR := /k/gba/pokeemerald-pc/SDL-1.2.15
|
|
|
|
ASM_PSEUDO_OP_CONV := sed -e 's/\.4byte/\.int/g;s/\.2byte/\.short/g'
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
export CPP := $(PREFIX)cpp
|
|
|
|
export LD := $(PREFIX)ld
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
EXE := .exe
|
|
|
|
else
|
|
|
|
EXE :=
|
|
|
|
endif
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
MODERN := 1
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
SHELL := /bin/bash -o pipefail
|
|
|
|
|
|
|
|
ELF = $(ROM:.gba=.elf)
|
|
|
|
MAP = $(ROM:.gba=.map)
|
|
|
|
|
|
|
|
C_SUBDIR = src
|
|
|
|
ASM_SUBDIR = asm
|
|
|
|
DATA_SRC_SUBDIR = src/data
|
|
|
|
DATA_ASM_SUBDIR = data
|
|
|
|
SONG_SUBDIR = sound/songs
|
|
|
|
MID_SUBDIR = sound/songs/midi
|
|
|
|
|
|
|
|
C_BUILDDIR = $(OBJ_DIR)/$(C_SUBDIR)
|
|
|
|
ASM_BUILDDIR = $(OBJ_DIR)/$(ASM_SUBDIR)
|
|
|
|
DATA_ASM_BUILDDIR = $(OBJ_DIR)/$(DATA_ASM_SUBDIR)
|
|
|
|
SONG_BUILDDIR = $(OBJ_DIR)/$(SONG_SUBDIR)
|
|
|
|
MID_BUILDDIR = $(OBJ_DIR)/$(MID_SUBDIR)
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
ASFLAGS := --32 --defsym MODERN=$(MODERN) --defsym PORTABLE=1
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
GCC_VER := $(shell $(CC) -dumpversion)
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
CC1 := $(shell $(PREFIX)gcc --print-prog-name=cc1) -quiet
|
|
|
|
override CFLAGS += -Wno-trigraphs -Wimplicit -Wparentheses -Wunused -O0 -g -m32 -std=gnu99 -fno-leading-underscore -fno-dce -Wno-unused-function -DPORTABLE -DNONMATCHING
|
|
|
|
ROM := pokeemerald_modern.gba
|
|
|
|
OBJ_DIR := build/pc
|
|
|
|
|
|
|
|
CPPFLAGS := -iquote include -Wno-trigraphs -D NONMATCHING -D PORTABLE -I$(SDL_DIR)/include -L$(SDL_DIR)/lib
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
LDFLAGS = -Map ../../$(MAP)
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
LIB := $(LIBPATH) -lgcc -lc
|
|
|
|
|
2022-05-19 19:14:13 +02:00
|
|
|
SHA1 := $(shell { command -v sha1sum || command -v shasum; } 2>/dev/null) -c
|
|
|
|
GFX := tools/gbagfx/gbagfx$(EXE)
|
|
|
|
AIF := tools/aif2pcm/aif2pcm$(EXE)
|
|
|
|
MID := tools/mid2agb/mid2agb$(EXE)
|
|
|
|
SCANINC := tools/scaninc/scaninc$(EXE)
|
|
|
|
PREPROC := tools/preproc/preproc$(EXE)
|
|
|
|
RAMSCRGEN := tools/ramscrgen/ramscrgen$(EXE)
|
|
|
|
FIX := tools/gbafix/gbafix$(EXE)
|
|
|
|
MAPJSON := tools/mapjson/mapjson$(EXE)
|
|
|
|
JSONPROC := tools/jsonproc/jsonproc$(EXE)
|
|
|
|
|
|
|
|
# Clear the default suffixes
|
|
|
|
.SUFFIXES:
|
|
|
|
# Don't delete intermediate files
|
|
|
|
.SECONDARY:
|
|
|
|
# Delete files that weren't built properly
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
|
|
|
|
# Secondary expansion is required for dependency variables in object rules.
|
|
|
|
.SECONDEXPANSION:
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
.PHONY: rom clean compare tidy tools mostlyclean clean-tools
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
C_SRCS := $(wildcard $(C_SUBDIR)/*.c $(C_SUBDIR)/*/*.c $(C_SUBDIR)/*/*/*.c)
|
2022-05-19 19:14:13 +02:00
|
|
|
C_OBJS := $(patsubst $(C_SUBDIR)/%.c,$(C_BUILDDIR)/%.o,$(C_SRCS))
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
#ASM_SRCS := $(wildcard $(ASM_SUBDIR)/*.s)
|
2022-05-19 19:14:13 +02:00
|
|
|
ASM_OBJS := $(patsubst $(ASM_SUBDIR)/%.s,$(ASM_BUILDDIR)/%.o,$(ASM_SRCS))
|
|
|
|
|
|
|
|
DATA_ASM_SRCS := $(wildcard $(DATA_ASM_SUBDIR)/*.s)
|
|
|
|
DATA_ASM_OBJS := $(patsubst $(DATA_ASM_SUBDIR)/%.s,$(DATA_ASM_BUILDDIR)/%.o,$(DATA_ASM_SRCS))
|
|
|
|
|
|
|
|
SONG_SRCS := $(wildcard $(SONG_SUBDIR)/*.s)
|
|
|
|
SONG_OBJS := $(patsubst $(SONG_SUBDIR)/%.s,$(SONG_BUILDDIR)/%.o,$(SONG_SRCS))
|
|
|
|
|
|
|
|
MID_SRCS := $(wildcard $(MID_SUBDIR)/*.mid)
|
|
|
|
MID_OBJS := $(patsubst $(MID_SUBDIR)/%.mid,$(MID_BUILDDIR)/%.o,$(MID_SRCS))
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
OBJS := $(C_OBJS) $(ASM_OBJS) $(DATA_ASM_OBJS) $(SONG_OBJS) $(MID_OBJS)
|
2022-05-19 19:14:13 +02:00
|
|
|
OBJS_REL := $(patsubst $(OBJ_DIR)/%,%,$(OBJS))
|
|
|
|
|
|
|
|
SUBDIRS := $(sort $(dir $(OBJS)))
|
|
|
|
|
|
|
|
AUTO_GEN_TARGETS :=
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
TOOLDIRS := $(filter-out tools/agbcc tools/binutils,$(wildcard tools/*))
|
|
|
|
TOOLBASE = $(TOOLDIRS:tools/%=%)
|
|
|
|
TOOLS = $(foreach tool,$(TOOLBASE),tools/%(tool)/$(tool)$(EXE))
|
|
|
|
|
|
|
|
$(shell mkdir -p $(SUBDIRS))
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
all: tools rom
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
tools: $(TOOLS)
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
$(TOOLS):
|
|
|
|
@$(foreach tooldir,$(TOOLDIRS),$(MAKE) -C $(tooldir);)
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
rom: $(ROM)
|
|
|
|
|
|
|
|
# For contributors to make sure a change didn't affect the contents of the ROM.
|
|
|
|
compare: all
|
2022-08-25 14:29:05 +02:00
|
|
|
@$(SHA1) rom.sha1
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
clean: mostlyclean clean-tools
|
|
|
|
|
|
|
|
clean-tools:
|
|
|
|
@$(foreach tooldir,$(TOOLDIRS),$(MAKE) clean -C $(tooldir);)
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
mostlyclean: tidy
|
|
|
|
rm -f sound/direct_sound_samples/*.bin
|
2022-05-19 19:14:13 +02:00
|
|
|
rm -f $(MID_SUBDIR)/*.s
|
2022-08-25 14:29:05 +02: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 {} +
|
2022-05-19 19:14:13 +02: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 {} +
|
|
|
|
rm -f $(AUTO_GEN_TARGETS)
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
tidy:
|
|
|
|
rm -f $(ROM) $(ELF) $(MAP)
|
|
|
|
rm -r $(OBJ_DIR)
|
|
|
|
ifeq ($(MODERN),0)
|
|
|
|
@$(MAKE) tidy MODERN=1
|
2022-05-19 19:14:13 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
include graphics_file_rules.mk
|
|
|
|
include map_data_rules.mk
|
|
|
|
include spritesheet_rules.mk
|
|
|
|
include json_data_rules.mk
|
|
|
|
include songs.mk
|
|
|
|
|
|
|
|
%.s: ;
|
|
|
|
%.png: ;
|
|
|
|
%.pal: ;
|
|
|
|
%.aif: ;
|
|
|
|
|
|
|
|
%.1bpp: %.png ; $(GFX) $< $@
|
|
|
|
%.4bpp: %.png ; $(GFX) $< $@
|
|
|
|
%.8bpp: %.png ; $(GFX) $< $@
|
|
|
|
%.gbapal: %.pal ; $(GFX) $< $@
|
|
|
|
%.gbapal: %.png ; $(GFX) $< $@
|
|
|
|
%.lz: % ; $(GFX) $< $@
|
|
|
|
%.rl: % ; $(GFX) $< $@
|
2022-08-25 14:29:05 +02:00
|
|
|
sound/direct_sound_samples/cry_%.bin: sound/direct_sound_samples/cry_%.aif ; $(AIF) $< $@ --compress
|
2022-05-19 19:14:13 +02:00
|
|
|
sound/%.bin: sound/%.aif ; $(AIF) $< $@
|
|
|
|
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
%src/platform/sdl2.o: CFLAGS += -fleading-underscore -O3
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
ifeq ($(NODEP),1)
|
|
|
|
$(C_BUILDDIR)/%.o: c_dep :=
|
2022-05-19 19:14:13 +02:00
|
|
|
else
|
2022-08-25 14:29:05 +02:00
|
|
|
$(C_BUILDDIR)/%.o: c_dep = $(shell $(SCANINC) -I include $(C_SUBDIR)/$*.c)
|
2022-05-19 19:14:13 +02:00
|
|
|
endif
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
$(C_BUILDDIR)/%.o : $(C_SUBDIR)/%.c $$(c_dep)
|
2022-05-19 19:14:13 +02:00
|
|
|
@$(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)
|
2022-08-25 14:29:05 +02:00
|
|
|
$(ASM_BUILDDIR)/%.o: asm_dep :=
|
2022-05-19 19:14:13 +02:00
|
|
|
else
|
2022-08-25 14:29:05 +02:00
|
|
|
$(ASM_BUILDDIR)/%.o: asm_dep = $(shell $(SCANINC) -I "" $(ASM_SUBDIR)/$*.s)
|
2022-05-19 19:14:13 +02:00
|
|
|
endif
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
$(ASM_BUILDDIR)/%.o: $(ASM_SUBDIR)/%.s $$(asm_dep)
|
2022-05-19 19:14:13 +02:00
|
|
|
$(AS) $(ASFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
ifeq ($(NODEP),1)
|
2022-08-25 14:29:05 +02:00
|
|
|
$(DATA_ASM_BUILDDIR)/%.o: data_dep :=
|
2022-05-19 19:14:13 +02:00
|
|
|
else
|
2022-08-25 14:29:05 +02:00
|
|
|
$(DATA_ASM_BUILDDIR)/%.o: data_dep = $(shell $(SCANINC) -I include -I "" $(DATA_ASM_SUBDIR)/$*.s)
|
2022-05-19 19:14:13 +02:00
|
|
|
endif
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
$(DATA_ASM_BUILDDIR)/%.o: $(DATA_ASM_SUBDIR)/%.s $$(data_dep)
|
|
|
|
$(PREPROC) $< charmap.txt | $(CPP) -I include | $(ASM_PSEUDO_OP_CONV) | $(AS) $(ASFLAGS) -o $@
|
|
|
|
|
2022-05-19 19:14:13 +02:00
|
|
|
$(SONG_BUILDDIR)/%.o: $(SONG_SUBDIR)/%.s
|
2022-08-25 14:29:05 +02:00
|
|
|
$(ASM_PSEUDO_OP_CONV) $< | $(AS) $(ASFLAGS) -I sound -o $@
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
$(OBJ_DIR)/sym_bss.ld: sym_bss.txt
|
|
|
|
$(RAMSCRGEN) .bss $< ENGLISH > $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/sym_common.ld: sym_common.txt $(C_OBJS) $(wildcard common_syms/*.txt)
|
|
|
|
$(RAMSCRGEN) COMMON $< ENGLISH -c $(C_BUILDDIR),common_syms > $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/sym_ewram.ld: sym_ewram.txt
|
|
|
|
$(RAMSCRGEN) ewram_data $< ENGLISH > $@
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
$(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS)
|
|
|
|
cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) $(LIB)
|
2022-05-19 19:14:13 +02:00
|
|
|
$(FIX) $@ -t"$(TITLE)" -c$(GAME_CODE) -m$(MAKER_CODE) -r$(REVISION) --silent
|
2022-08-25 14:29:05 +02:00
|
|
|
#$(ROM): $(ELF)
|
|
|
|
#$(OBJCOPY) -O binary $< $@
|
|
|
|
#$(FIX) $@ -p --silent
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
pokeemerald.exe: $(OBJS)
|
|
|
|
$(CC) $(CFLAGS) -Wl,--demangle $^ -L$(SDL_DIR)/lib -lmingw32 -lSDLmain -lSDL.dll -lwinmm -static-libgcc -o $@
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
$(ROM): pokeemerald.exe
|
|
|
|
@:
|
2022-05-19 19:14:13 +02:00
|
|
|
|
2022-08-25 14:29:05 +02:00
|
|
|
modern: ; @$(MAKE) MODERN=1
|