mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 23:05:31 -04:00
2c481eaeeb
* Partial linking of overlay segments, relax linker script alignment * Partial linking of all spec segments * Fix update, remove _RomPos from linker script * iQue version working pending COM-plugin update * Add plf map file resolution to sym_info.py, local symbol merging is broken * git subrepo pull tools/com-plugin subrepo: subdir: "tools/com-plugin" merged: "c4f3ba845" upstream: origin: "git@github.com:Thar0/com-plugin.git" branch: "main" commit: "c4f3ba845" git-subrepo: version: "0.4.6" origin: "https://github.com/ingydotnet/git-subrepo" commit: "110b9eb" * Make tools compatible with partial linking Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com> * Remove unused files * Fix some makefile bits * mkspecrules cleanup * Comment on the makerom linker layout in mkldscript * Revert linker padding strategy back to pad_text spec directives * Comment on objcopy elf -> rom step * Adjust tool descriptions * Fix compressed builds * rm reloc_prereq, no longer used * Makefile merge fix Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> --------- Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com> Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
84 lines
2.3 KiB
Makefile
84 lines
2.3 KiB
Makefile
CFLAGS := -Wall -Wextra -pedantic -std=gnu99 -g -O2
|
|
PROGRAMS := bin2c mkdmadata mkldscript mkspecrules preprocess_pragmas vtxdis
|
|
|
|
UNAME_S := $(shell uname -s)
|
|
ifeq ($(UNAME_S),Linux)
|
|
DETECTED_OS=linux
|
|
else ifeq ($(UNAME_S),Darwin)
|
|
DETECTED_OS=macos
|
|
else
|
|
$(error Unsupported OS: $(UNAME_S))
|
|
endif
|
|
|
|
IDO_RECOMP_VERSION := v1.2
|
|
IDO_RECOMP_5_3_DIR := ido_recomp/$(DETECTED_OS)/5.3
|
|
IDO_RECOMP_7_1_DIR := ido_recomp/$(DETECTED_OS)/7.1
|
|
|
|
EGCS_BINUTILS_VERSION := 0.6
|
|
EGCS_GCC_VERSION := 0.7
|
|
EGCS_DIR := egcs/$(DETECTED_OS)
|
|
|
|
ifeq ($(shell command -v clang >/dev/null 2>&1; echo $$?),0)
|
|
CC := clang
|
|
else
|
|
CC := gcc
|
|
endif
|
|
|
|
LLD ?= 0
|
|
|
|
ifeq ($(shell command -v ld.lld >/dev/null 2>&1; echo $$?),0)
|
|
LLD := 1
|
|
endif
|
|
|
|
ifneq ($(LLD),0)
|
|
CFLAGS += -fuse-ld=lld
|
|
endif
|
|
|
|
all: $(PROGRAMS) $(IDO_RECOMP_5_3_DIR) $(IDO_RECOMP_7_1_DIR) $(EGCS_DIR)
|
|
$(MAKE) -C fado
|
|
$(MAKE) -C audio
|
|
$(MAKE) -C com-plugin
|
|
$(MAKE) -C assets
|
|
|
|
clean:
|
|
$(RM) $(PROGRAMS) $(addsuffix .exe,$(PROGRAMS))
|
|
$(RM) -r ido_recomp egcs
|
|
$(MAKE) -C fado clean
|
|
$(MAKE) -C audio clean
|
|
$(MAKE) -C com-plugin clean
|
|
$(MAKE) -C assets clean
|
|
|
|
distclean: clean
|
|
$(MAKE) -C audio distclean
|
|
$(MAKE) -C assets distclean
|
|
|
|
.PHONY: all clean distclean
|
|
|
|
bin2c_SOURCES := bin2c.c
|
|
mkdmadata_SOURCES := mkdmadata.c spec.c util.c
|
|
mkldscript_SOURCES := mkldscript.c spec.c util.c
|
|
mkspecrules_SOURCES := mkspecrules.c spec.c util.c
|
|
preprocess_pragmas_SOURCES := preprocess_pragmas.c
|
|
vtxdis_SOURCES := vtxdis.c
|
|
|
|
|
|
define COMPILE =
|
|
$(1): $($1_SOURCES)
|
|
$(CC) $(CFLAGS) $$^ -o $$@
|
|
endef
|
|
|
|
$(foreach p,$(PROGRAMS),$(eval $(call COMPILE,$(p))))
|
|
|
|
$(IDO_RECOMP_5_3_DIR):
|
|
mkdir -p $@
|
|
curl -sL https://github.com/decompals/ido-static-recomp/releases/download/$(IDO_RECOMP_VERSION)/ido-5.3-recomp-$(DETECTED_OS).tar.gz | tar xz -C $@
|
|
|
|
$(IDO_RECOMP_7_1_DIR):
|
|
mkdir -p $@
|
|
curl -sL https://github.com/decompals/ido-static-recomp/releases/download/$(IDO_RECOMP_VERSION)/ido-7.1-recomp-$(DETECTED_OS).tar.gz | tar xz -C $@
|
|
|
|
$(EGCS_DIR):
|
|
mkdir -p $@
|
|
curl -sL https://github.com/decompals/mips-binutils-egcs-2.9.5/releases/download/$(EGCS_BINUTILS_VERSION)/mips-binutils-egcs-2.9.5-$(DETECTED_OS).tar.gz | tar xz -C $@
|
|
curl -sL https://github.com/decompals/mips-gcc-egcs-2.91.66/releases/download/$(EGCS_GCC_VERSION)/mips-gcc-egcs-2.91.66-$(DETECTED_OS).tar.gz | tar xz -C $@
|