2020-08-23 17:43:26 +00:00
MAKEFLAGS += --no-builtin-rules
2020-03-17 04:31:30 +00:00
2020-07-19 19:42:05 +00:00
# Build options can either be changed by modifying the makefile, or by building with 'make SETTING=value'
# If COMPARE is 1, check the output md5sum after building
COMPARE ?= 1
# If NON_MATCHING is 1, define the NON_MATCHING C flag when building
NON_MATCHING ?= 0
2020-08-22 23:06:52 +00:00
# If ORIG_COMPILER is 1, compile with QEMU_IRIX and the original compiler
ORIG_COMPILER ?= 0
2020-07-19 19:42:05 +00:00
i f e q ( $( NON_MATCHING ) , 1 )
CFLAGS := -DNON_MATCHING
2020-12-20 18:10:13 +00:00
CPPFLAGS := -DNON_MATCHING
2020-07-19 19:42:05 +00:00
COMPARE := 0
e n d i f
2020-03-17 04:31:30 +00:00
PROJECT_DIR := $( dir $( realpath $( firstword $( MAKEFILE_LIST) ) ) )
2020-09-21 07:00:28 +00:00
MAKE = make
2020-12-20 18:10:13 +00:00
CPPFLAGS += -P
2020-09-21 07:00:28 +00:00
i f e q ( $( OS ) , W i n d o w s _ N T )
2021-01-20 19:46:25 +00:00
DETECTED_OS = windows
2020-09-21 07:00:28 +00:00
e l s e
UNAME_S := $( shell uname -s)
ifeq ( $( UNAME_S) ,Linux)
DETECTED_OS = linux
endif
ifeq ( $( UNAME_S) ,Darwin)
DETECTED_OS = macos
MAKE = gmake
CPPFLAGS += -xc++
endif
e n d i f
2020-03-17 04:31:30 +00:00
#### Tools ####
i f e q ( $( shell type mips -linux -gnu -ld >/dev /null 2>/dev /null ; echo $ $ ?) , 0 )
MIPS_BINUTILS_PREFIX := mips-linux-gnu-
e l s e
2020-08-15 18:08:53 +00:00
$( error Please install or build mips-linux-gnu)
2020-03-17 04:31:30 +00:00
e n d i f
2020-09-21 07:00:28 +00:00
CC := tools/ido_recomp/$( DETECTED_OS) /7.1/cc
CC_OLD := tools/ido_recomp/$( DETECTED_OS) /5.3/cc
2020-08-22 23:06:52 +00:00
# if ORIG_COMPILER is 1, check that either QEMU_IRIX is set or qemu-irix package installed
i f e q ( $( ORIG_COMPILER ) , 1 )
ifndef QEMU_IRIX
QEMU_IRIX := $( shell which qemu-irix)
ifeq ( , $( QEMU_IRIX) )
$( error Please install qemu-irix package or set QEMU_IRIX env var to the full qemu-irix binary path)
endif
2020-03-17 04:31:30 +00:00
endif
2020-08-22 23:06:52 +00:00
CC = $( QEMU_IRIX) -L tools/ido7.1_compiler tools/ido7.1_compiler/usr/bin/cc
CC_OLD = $( QEMU_IRIX) -L tools/ido5.3_compiler tools/ido5.3_compiler/usr/bin/cc
2020-03-17 04:31:30 +00:00
e n d i f
AS := $( MIPS_BINUTILS_PREFIX) as
LD := $( MIPS_BINUTILS_PREFIX) ld
OBJCOPY := $( MIPS_BINUTILS_PREFIX) objcopy
OBJDUMP := $( MIPS_BINUTILS_PREFIX) objdump
2020-12-22 00:14:25 +00:00
EMULATOR = mupen64plus
EMU_FLAGS = --noosd
2020-03-17 04:31:30 +00:00
2020-03-23 22:15:45 +00:00
# Check code syntax with host compiler
2020-09-19 01:45:39 +00:00
CHECK_WARNINGS := -Wall -Wextra -Wno-format-security -Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-variable -Wno-missing-braces -Wno-int-conversion
2020-12-26 11:39:52 +00:00
CC_CHECK := gcc -fno-builtin -fsyntax-only -fsigned-char -std= gnu90 -D _LANGUAGE_C -D NON_MATCHING -Iinclude -Isrc -Iassets -Ibuild -include stdarg.h $( CHECK_WARNINGS)
2020-03-17 04:31:30 +00:00
CPP := cpp
MKLDSCRIPT := tools/mkldscript
ELF2ROM := tools/elf2rom
2021-01-02 04:24:29 +00:00
ZAPD := tools/ZAPD/ZAPD.out
2020-03-17 04:31:30 +00:00
2020-05-01 01:49:35 +00:00
OPTFLAGS := -O2
2020-04-18 08:50:41 +00:00
ASFLAGS := -march= vr4300 -32 -Iinclude
2020-05-27 07:48:07 +00:00
MIPS_VERSION := -mips2
2020-03-17 04:31:30 +00:00
# we support Microsoft extensions such as anonymous structs, which the compiler does support but warns for their usage. Surpress the warnings with -woff.
2020-12-26 11:39:52 +00:00
CFLAGS += -G 0 -non_shared -Xfullwarn -Xcpluscomm -Iinclude -Isrc -Iassets -Ibuild -Wab,-r4300_mul -woff 649,838,712
2020-03-17 04:31:30 +00:00
i f e q ( $( shell getconf LONG_BIT ) , 3 2 )
# Work around memory allocation bug in QEMU
export QEMU_GUEST_BASE := 1
e l s e
# Ensure that gcc treats the code as 32-bit
CC_CHECK += -m32
e n d i f
#### Files ####
# ROM image
ROM := zelda_ocarina_mq_dbg.z64
ELF := $( ROM:.z64= .elf)
# description of ROM segments
SPEC := spec
2020-05-01 01:49:35 +00:00
SRC_DIRS := $( shell find src -type d)
ASM_DIRS := $( shell find asm -type d -not -path "asm/non_matchings*" ) $( shell find data -type d)
2020-12-26 11:39:52 +00:00
ASSET_BIN_DIRS := $( shell find assets/* -type d -not -path "assets/xml*" )
ASSET_FILES_XML := $( foreach dir,$( ASSET_BIN_DIRS) ,$( wildcard $( dir) /*.xml) )
ASSET_FILES_BIN := $( foreach dir,$( ASSET_BIN_DIRS) ,$( wildcard $( dir) /*.bin) )
ASSET_FILES_OUT := $( foreach f,$( ASSET_FILES_XML:.xml= .c) ,$f ) \
$( foreach f,$( ASSET_FILES_BIN:.bin= .bin.inc.c) ,build/$f )
2020-05-01 01:49:35 +00:00
# source files
2020-12-26 11:39:52 +00:00
C_FILES := $( foreach dir,$( SRC_DIRS) $( ASSET_BIN_DIRS) ,$( wildcard $( dir) /*.c) )
2020-03-17 04:31:30 +00:00
S_FILES := $( foreach dir,$( ASM_DIRS) ,$( wildcard $( dir) /*.s) )
O_FILES := $( foreach f,$( S_FILES:.s= .o) ,build/$f ) \
$( foreach f,$( C_FILES:.c= .o) ,build/$f ) \
2020-05-01 01:49:35 +00:00
$( foreach f,$( wildcard baserom/*) ,build/$f .o)
2020-12-26 11:39:52 +00:00
2021-05-02 20:21:27 +00:00
# Automatic dependency files
# (Only asm_processor dependencies are handled for now)
DEP_FILES := $( O_FILES:.o= .asmproc.d)
2021-05-15 18:14:51 +00:00
TEXTURE_FILES_PNG := $( foreach dir,$( ASSET_BIN_DIRS) ,$( wildcard $( dir) /*.png) )
2021-04-02 22:07:29 +00:00
TEXTURE_FILES_JPG := $( foreach dir,$( ASSET_BIN_DIRS) ,$( wildcard $( dir) /*.jpg) )
2021-05-15 18:14:51 +00:00
TEXTURE_FILES_OUT := $( foreach f,$( TEXTURE_FILES_PNG:.png= .inc.c) ,build/$f ) \
2021-04-02 22:07:29 +00:00
$( foreach f,$( TEXTURE_FILES_JPG:.jpg= .jpg.inc.c) ,build/$f ) \
2020-03-17 04:31:30 +00:00
# create build directories
2021-03-14 16:07:46 +00:00
$( shell mkdir -p build /baserom $ ( foreach dir ,$ ( SRC_DIRS ) $ ( ASM_DIRS ) $ ( ASSET_BIN_DIRS ) ,build /$ ( dir ) ) )
2020-03-17 04:31:30 +00:00
2020-05-01 01:49:35 +00:00
build/src/libultra_boot_O1/%.o : OPTFLAGS := -O 1
build/src/libultra_boot_O2/%.o : OPTFLAGS := -O 2
2020-10-03 15:22:44 +00:00
build/src/libultra_code_O1/%.o : OPTFLAGS := -O 1
build/src/libultra_code_O2/%.o : OPTFLAGS := -O 2
build/src/libultra_code_O2_g3/%.o : OPTFLAGS := -O 2 -g 3
2021-01-31 18:27:50 +00:00
build/src/libultra_boot_O1/ll.o : MIPS_VERSION := -mips 3 -32
2020-10-03 15:22:44 +00:00
build/src/libultra_code_O1/llcvt.o : MIPS_VERSION := -mips 3 -32
2020-03-17 04:31:30 +00:00
build/src/code/fault.o : CFLAGS += -trapuv
2020-05-01 01:49:35 +00:00
build/src/code/fault.o : OPTFLAGS := -O 2 -g 3
2020-03-17 04:31:30 +00:00
build/src/code/fault_drawer.o : CFLAGS += -trapuv
2020-05-01 01:49:35 +00:00
build/src/code/fault_drawer.o : OPTFLAGS := -O 2 -g 3
2020-06-05 17:18:39 +00:00
build/src/code/ucode_disas.o : OPTFLAGS := -O 2 -g 3
2020-05-01 01:49:35 +00:00
build/src/code/code_801068B0.o : OPTFLAGS := -g
build/src/code/code_80106860.o : OPTFLAGS := -g
build/src/code/code_801067F0.o : OPTFLAGS := -g
build/src/libultra_boot_O1/%.o : CC := $( CC_OLD )
build/src/libultra_boot_O2/%.o : CC := $( CC_OLD )
2020-10-03 15:22:44 +00:00
build/src/libultra_code_O1/%.o : CC := python 3 tools /asm_processor /build .py $( CC_OLD ) -- $( AS ) $( ASFLAGS ) --
build/src/libultra_code_O2/%.o : CC := python 3 tools /asm_processor /build .py $( CC_OLD ) -- $( AS ) $( ASFLAGS ) --
build/src/libultra_code_O2_g3/%.o : CC := python 3 tools /asm_processor /build .py $( CC_OLD ) -- $( AS ) $( ASFLAGS ) --
2020-05-01 01:49:35 +00:00
build/src/code/jpegutils.o : CC := python 3 tools /asm_processor /build .py $( CC_OLD ) -- $( AS ) $( ASFLAGS ) --
2020-06-21 22:43:14 +00:00
build/src/code/jpegdecoder.o : CC := python 3 tools /asm_processor /build .py $( CC_OLD ) -- $( AS ) $( ASFLAGS ) --
2020-03-17 04:31:30 +00:00
2020-05-01 01:49:35 +00:00
build/src/boot/%.o : CC := python 3 tools /asm_processor /build .py $( CC ) -- $( AS ) $( ASFLAGS ) --
build/src/code/%.o : CC := python 3 tools /asm_processor /build .py $( CC ) -- $( AS ) $( ASFLAGS ) --
build/src/overlays/actors/%.o : CC := python 3 tools /asm_processor /build .py $( CC ) -- $( AS ) $( ASFLAGS ) --
build/src/overlays/effects/%.o : CC := python 3 tools /asm_processor /build .py $( CC ) -- $( AS ) $( ASFLAGS ) --
build/src/overlays/gamestates/%.o : CC := python 3 tools /asm_processor /build .py $( CC ) -- $( AS ) $( ASFLAGS ) --
2021-04-30 21:23:22 +00:00
build/assets/%.o : CC := python 3 tools /asm_processor /build .py $( CC ) -- $( AS ) $( ASFLAGS ) --
2020-04-16 18:08:23 +00:00
2020-03-17 04:31:30 +00:00
#### Main Targets ###
2020-07-19 19:42:05 +00:00
all : $( ROM )
i f e q ( $( COMPARE ) , 1 )
2020-03-17 04:31:30 +00:00
@md5sum $( ROM)
@md5sum -c checksum.md5
2020-07-19 19:42:05 +00:00
e n d i f
2020-03-17 04:31:30 +00:00
$(ROM) : $( ELF )
$( ELF2ROM) -cic 6105 $< $@
2020-12-26 11:39:52 +00:00
$(ELF) : $( TEXTURE_FILES_OUT ) $( ASSET_FILES_OUT ) $( O_FILES ) build /ldscript .txt build /undefined_syms .txt
2020-03-17 04:31:30 +00:00
$( LD) -T build/undefined_syms.txt -T build/ldscript.txt --no-check-sections --accept-unknown-input-arch --emit-relocs -Map build/z64.map -o $@
build/ldscript.txt : $( SPEC )
2020-09-21 07:00:28 +00:00
$( CPP) $( CPPFLAGS) $< > build/spec
2020-03-17 04:31:30 +00:00
$( MKLDSCRIPT) build/spec $@
build/undefined_syms.txt : undefined_syms .txt
2020-09-21 07:00:28 +00:00
$( CPP) $( CPPFLAGS) $< > build/undefined_syms.txt
2020-03-17 04:31:30 +00:00
clean :
2020-08-15 18:08:53 +00:00
$( RM) -r $( ROM) $( ELF) build
2020-03-17 04:31:30 +00:00
2021-05-17 17:50:19 +00:00
assetclean :
2021-03-14 16:07:46 +00:00
$( RM) -r $( ASSET_BIN_DIRS)
2021-05-26 23:40:48 +00:00
$( RM) -r build/assets
$( RM) -r .extracted-assets.json
2021-05-17 17:50:19 +00:00
distclean : clean assetclean
2021-03-14 16:07:46 +00:00
$( RM) -r baserom/
$( MAKE) -C tools distclean
2020-03-28 21:34:57 +00:00
setup :
2021-05-03 17:37:54 +00:00
$( MAKE) -C tools
2020-03-28 02:30:19 +00:00
python3 fixbaserom.py
python3 extract_baserom.py
python3 extract_assets.py
2020-03-17 04:31:30 +00:00
2020-12-26 11:39:52 +00:00
resources : $( ASSET_FILES_OUT )
2020-12-22 00:14:25 +00:00
test : $( ROM )
$( EMULATOR) $( EMU_FLAGS) $<
2021-05-17 17:50:19 +00:00
.PHONY : all clean setup test distclean assetclean
2020-12-22 00:14:25 +00:00
2020-03-17 04:31:30 +00:00
#### Various Recipes ####
build/baserom/%.o : baserom /%
$( OBJCOPY) -I binary -O elf32-big $< $@
build/asm/%.o : asm /%.s
2021-05-02 20:21:27 +00:00
$( AS) $( ASFLAGS) $< -o $@
2020-03-17 04:31:30 +00:00
build/data/%.o : data /%.s
2021-05-02 20:21:27 +00:00
iconv --from UTF-8 --to EUC-JP $< | $( AS) $( ASFLAGS) -o $@
2020-03-17 04:31:30 +00:00
build/assets/%.o : assets /%.c
2021-05-02 20:21:27 +00:00
$( CC) -c $( CFLAGS) $( MIPS_VERSION) $( OPTFLAGS) -o $@ $<
2020-03-17 04:31:30 +00:00
$( OBJCOPY) -O binary $@ $@ .bin
build/src/overlays/%.o : src /overlays /%.c
2021-05-02 20:21:27 +00:00
$( CC) -c $( CFLAGS) $( MIPS_VERSION) $( OPTFLAGS) -o $@ $<
$( CC_CHECK) $<
2021-05-15 18:14:51 +00:00
$( ZAPD) bovl -eh -i $@ -cfg $< --outputpath $( @D) /$( notdir $( @D) ) _reloc.s
2020-06-07 17:52:43 +00:00
-test -f $( @D) /$( notdir $( @D) ) _reloc.s && $( AS) $( ASFLAGS) $( @D) /$( notdir $( @D) ) _reloc.s -o $( @D) /$( notdir $( @D) ) _reloc.o
2020-03-17 04:31:30 +00:00
@$( OBJDUMP) -d $@ > $( @:.o= .s)
build/src/%.o : src /%.c
2021-05-02 20:21:27 +00:00
$( CC) -c $( CFLAGS) $( MIPS_VERSION) $( OPTFLAGS) -o $@ $<
$( CC_CHECK) $<
2020-03-17 04:31:30 +00:00
@$( OBJDUMP) -d $@ > $( @:.o= .s)
2021-01-31 18:27:50 +00:00
build/src/libultra_boot_O1/ll.o : src /libultra_boot_O 1/ll .c
2021-05-02 20:21:27 +00:00
$( CC) -c $( CFLAGS) $( MIPS_VERSION) $( OPTFLAGS) -o $@ $<
$( CC_CHECK) $<
2021-01-31 18:27:50 +00:00
python3 tools/set_o32abi_bit.py $@
@$( OBJDUMP) -d $@ > $( @:.o= .s)
2020-10-03 15:22:44 +00:00
build/src/libultra_code_O1/llcvt.o : src /libultra_code_O 1/llcvt .c
2021-05-02 20:21:27 +00:00
$( CC) -c $( CFLAGS) $( MIPS_VERSION) $( OPTFLAGS) -o $@ $<
$( CC_CHECK) $<
2020-05-27 07:48:07 +00:00
python3 tools/set_o32abi_bit.py $@
@$( OBJDUMP) -d $@ > $( @:.o= .s)
2020-12-26 11:39:52 +00:00
assets/%.c : assets /%.xml
2021-01-02 04:24:29 +00:00
$( ZAPD) bsf -eh -i $< -o $( dir $<)
2020-12-26 11:39:52 +00:00
$( CC) -c $( CFLAGS) $( MIPS_VERSION) $( OPTFLAGS) -o build/$( @:.c= .o) $@
2020-03-17 04:31:30 +00:00
2021-05-15 18:14:51 +00:00
build/%.inc.c : %.png
$( ZAPD) btex -eh -tt $( subst .,,$( suffix $* ) ) -i $< -o $@
2020-03-17 04:31:30 +00:00
2020-12-26 11:39:52 +00:00
build/assets/%.bin.inc.c : assets /%.bin
2021-05-15 18:14:51 +00:00
$( ZAPD) bblb -eh -i $< -o $@
2021-04-02 22:07:29 +00:00
build/assets/%.jpg.inc.c : assets /%.jpg
2021-05-15 18:14:51 +00:00
$( ZAPD) bren -eh -i $< -o $@
2021-05-02 20:21:27 +00:00
- i n c l u d e $( DEP_FILES )