Files
HackerOoT/tools/Makefile

109 lines
3.2 KiB
Makefile

MAKEFLAGS += --no-builtin-rules --no-print-directory
CFLAGS := -Wall -Wextra -pedantic -std=gnu99 -g -O2
PROGRAMS := bin2c elf2rom makeromfs mkdmadata mkldscript preprocess_pragmas reloc_prereq
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
-include print_rules.mk
all: $(PROGRAMS) $(IDO_RECOMP_5_3_DIR) $(IDO_RECOMP_7_1_DIR) $(EGCS_DIR)
$(call print_no_args,Building fado...)
$(V)$(MAKE) -C fado
$(call print_no_args,Building audio tools...)
$(V)$(MAKE) -C audio
$(call print_no_args,Building com-plugin...)
$(V)$(MAKE) -C com-plugin
$(call print_no_args,Building assets tools...)
$(V)$(MAKE) -C assets
$(call print_no_args,Building gzinject...)
ifeq ($(wildcard ./gzinject/Makefile),)
$(V)cd ./gzinject && ./configure
endif
$(V)$(MAKE) -C gzinject
$(call print_no_args,Building z64compress...)
$(V)$(MAKE) -C z64compress
$(call print_no_args,Building Flips...)
$(V)$(MAKE) -C Flips TARGET=cli
clean:
$(V)$(RM) $(PROGRAMS) $(addsuffix .exe,$(PROGRAMS))
$(V)$(RM) -r ido_recomp egcs
$(V)$(MAKE) -C fado clean
$(V)$(MAKE) -C audio clean
$(V)$(MAKE) -C com-plugin clean
$(V)$(MAKE) -C assets clean
ifneq ($(wildcard ./gzinject/Makefile),)
$(V)$(MAKE) -C gzinject distclean
endif
$(V)$(MAKE) -C z64compress clean
$(V)$(MAKE) -C Flips clean
$(V)rm -f Flips/flips
distclean: clean
$(V)$(MAKE) -C audio distclean
$(V)$(MAKE) -C assets distclean
.PHONY: all clean distclean
elf2rom_SOURCES := elf2rom.c elf32.c n64chksum.c util.c
bin2c_SOURCES := bin2c.c
makeromfs_SOURCES := makeromfs.c n64chksum.c util.c
mkdmadata_SOURCES := mkdmadata.c spec.c util.c
mkldscript_SOURCES := mkldscript.c spec.c util.c
preprocess_pragmas_SOURCES := preprocess_pragmas.c
reloc_prereq_SOURCES := reloc_prereq.c spec.c util.c
define COMPILE =
$(1): $($1_SOURCES)
$(call print_two_args,Compiling:,$$^,$$@)
$(V)$(CC) $(CFLAGS) $$^ -o $$@
endef
$(foreach p,$(PROGRAMS),$(eval $(call COMPILE,$(p))))
$(IDO_RECOMP_5_3_DIR):
$(V)mkdir -p $@
$(V)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):
$(V)mkdir -p $@
$(V)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):
$(V)mkdir -p $@
$(V)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 $@
$(V)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 $@