2020-08-23 17:43:26 +00:00
MAKEFLAGS += --no-builtin-rules
2020-03-17 04:31:30 +00:00
2022-04-30 23:03:22 +00:00
# Ensure the build fails if a piped command fails
SHELL = /bin/bash
.SHELLFLAGS = -o pipefail -c
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
2022-02-19 21:50:56 +00:00
# If COMPILER is "gcc", compile with GCC instead of IDO.
COMPILER ?= ido
CFLAGS ?=
CPPFLAGS ?=
# ORIG_COMPILER cannot be combined with a non-IDO compiler. Check for this case and error out if found.
i f n e q ( $( COMPILER ) , i d o )
ifeq ( $( ORIG_COMPILER) ,1)
$( error ORIG_COMPILER can only be used with the IDO compiler. Please check your Makefile variables and try again)
endif
e n d i f
i f e q ( $( COMPILER ) , g c c )
CFLAGS += -DCOMPILER_GCC
CPPFLAGS += -DCOMPILER_GCC
NON_MATCHING := 1
e n d i f
2020-07-19 19:42:05 +00:00
2022-01-19 23:57:39 +00:00
# Set prefix to mips binutils binaries (mips-linux-gnu-ld => 'mips-linux-gnu-') - Change at your own risk!
# In nearly all cases, not having 'mips-linux-gnu-*' binaries on the PATH is indicative of missing dependencies
MIPS_BINUTILS_PREFIX ?= mips-linux-gnu-
2020-07-19 19:42:05 +00:00
i f e q ( $( NON_MATCHING ) , 1 )
2022-04-30 23:03:22 +00:00
CFLAGS += -DNON_MATCHING -DAVOID_UB
CPPFLAGS += -DNON_MATCHING -DAVOID_UB
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
2022-05-01 22:14:44 +00:00
CPPFLAGS += -fno-dollars-in-identifiers -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
2022-01-17 00:43:07 +00:00
N_THREADS ?= $( shell nproc)
2020-03-17 04:31:30 +00:00
#### Tools ####
2022-01-19 23:57:39 +00:00
i f n e q ( $( shell type $ ( MIPS_BINUTILS_PREFIX ) ld >/dev /null 2>/dev /null ; echo $ $ ?) , 0 )
$( error Please install or build $( MIPS_BINUTILS_PREFIX) )
2020-03-17 04:31:30 +00:00
e n d i f
2022-02-19 21:50:56 +00:00
# Detect compiler and set variables appropriately.
i f e q ( $( COMPILER ) , g c c )
CC := $( MIPS_BINUTILS_PREFIX) gcc
e l s e
i f e q ( $( COMPILER ) , i d o )
CC := tools/ido_recomp/$( DETECTED_OS) /7.1/cc
CC_OLD := tools/ido_recomp/$( DETECTED_OS) /5.3/cc
e l s e
$( error Unsupported compiler . Please use either ido or gcc as the COMPILER variable .)
e n d i f
e n d i f
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
2021-09-18 12:07:51 +00:00
INC := -Iinclude -Isrc -Iassets -Ibuild -I.
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-03-17 04:31:30 +00:00
CPP := cpp
MKLDSCRIPT := tools/mkldscript
2021-11-30 23:29:09 +00:00
MKDMADATA := tools/mkdmadata
2020-03-17 04:31:30 +00:00
ELF2ROM := tools/elf2rom
2021-01-02 04:24:29 +00:00
ZAPD := tools/ZAPD/ZAPD.out
2022-02-06 19:40:26 +00:00
FADO := tools/fado/fado.elf
2020-03-17 04:31:30 +00:00
2022-02-19 21:50:56 +00:00
i f e q ( $( COMPILER ) , g c c )
OPTFLAGS := -Os -ffast-math -fno-unsafe-math-optimizations
e l s e
OPTFLAGS := -O2
e n d i f
2022-05-01 22:14:44 +00:00
ASFLAGS := -march= vr4300 -32 -no-pad-sections -Iinclude
2020-03-17 04:31:30 +00:00
2022-02-19 21:50:56 +00:00
i f e q ( $( COMPILER ) , g c c )
2022-04-30 23:03:22 +00:00
CFLAGS += -G 0 -nostdinc $( INC) -march= vr4300 -mfix4300 -mabi= 32 -mno-abicalls -mdivide-breaks -fno-zero-initialized-in-bss -fno-toplevel-reorder -ffreestanding -fno-common -fno-merge-constants -mno-explicit-relocs -mno-split-addresses $( CHECK_WARNINGS) -funsigned-char
2022-02-19 21:50:56 +00:00
MIPS_VERSION := -mips3
e l s e
# we support Microsoft extensions such as anonymous structs, which the compiler does support but warns for their usage. Surpress the warnings with -woff.
CFLAGS += -G 0 -non_shared -Xfullwarn -Xcpluscomm $( INC) -Wab,-r4300_mul -woff 649,838,712
MIPS_VERSION := -mips2
e n d i f
2020-03-17 04:31:30 +00:00
2022-02-19 21:50:56 +00:00
i f e q ( $( COMPILER ) , i d o )
2022-04-30 23:03:22 +00:00
# Have CC_CHECK pretend to be a MIPS compiler
MIPS_BUILTIN_DEFS := -D_MIPS_ISA_MIPS2= 2 -D_MIPS_ISA= _MIPS_ISA_MIPS2 -D_ABIO32= 1 -D_MIPS_SIM= _ABIO32 -D_MIPS_SZINT= 32 -D_MIPS_SZLONG= 32 -D_MIPS_SZPTR= 32
CC_CHECK = gcc -fno-builtin -fsyntax-only -funsigned-char -std= gnu90 -D_LANGUAGE_C -DNON_MATCHING $( MIPS_BUILTIN_DEFS) $( INC) $( CHECK_WARNINGS)
2022-02-19 21:50:56 +00:00
ifeq ( $( shell getconf LONG_BIT) , 32)
# Work around memory allocation bug in QEMU
export QEMU_GUEST_BASE := 1
else
# Ensure that gcc (warning check) treats the code as 32-bit
CC_CHECK += -m32
endif
2020-03-17 04:31:30 +00:00
e l s e
2022-02-19 21:50:56 +00:00
CC_CHECK = @:
2020-03-17 04:31:30 +00:00
e n d i f
#### Files ####
# ROM image
ROM := zelda_ocarina_mq_dbg.z64
ELF := $( ROM:.z64= .elf)
# description of ROM segments
SPEC := spec
2022-02-19 21:50:56 +00:00
i f e q ( $( COMPILER ) , i d o )
SRC_DIRS := $( shell find src -type d -not -path src/gcc_fix)
e l s e
2020-05-01 01:49:35 +00:00
SRC_DIRS := $( shell find src -type d)
2022-02-19 21:50:56 +00:00
e n d i f
2020-05-01 01:49:35 +00:00
ASM_DIRS := $( shell find asm -type d -not -path "asm/non_matchings*" ) $( shell find data -type d)
z_message_PAL, message_data_static and surrounding doc (#996)
* Initial progress on z_message_PAL, very messy
* Fix merge
* Some more progress
* Fix merge
* More z_message_PAL
* Small progress
* More small progress
* message_data_static files OK
* Prepare z_message_tables
* Matched another function, small updates
* Attempt to use asm-processor static-symbols branch
* Refactor text id declarations
* Begin large text codes parser function
* Fix merge
* Refactor done
* Build OK, add color and highscore names
* Remove encoded text headers and automatically encode during build
* Fix kanfont
* Various cleanups
* DISP macros
* Another match aside data
* Further progress
* Small improvements
* Deduplicate magic values for text control codes, small improvements
* Tiny progress
* Minor cleanups
* Clean up z_message_PAL comment
* Progress on large functions
* Further progress on large functions
* Changes to mkldscript to link .data in the .rodata section
* data OK
* Few improvements
* Use gDPLoadTextureBlock macros where appropriate
* rm z_message_tables, progress on large functions
* 2 more matches
* Improvements
* Small progress
* More progress on big function
* progress
* match func_80107980
* match Message_Update
* match func_8010BED8
* done
* Progress on remaining large functions
* Small progress on largest function
* Another match, extract text and move to assets, improve text build system
* Small nonmatchings improvements
* docs wip
* Largest function maybe equivalent
* Fix merge
* Document do_action values, largest function is almost instruction-matching
* Rename NAVI do_action to NONE, as that appears to be how that value is used in practice
* Fix merge
* one match
* Last function is instruction-matching
* Fix
* Improvements thanks to engineer124
* Stack matched thanks to petrie911, now just a/v/low t regalloc issues, some cleanup
* More variables labeled, use text state enum everywhere
* More labels and names
* Fix
* Actor_IsTalking -> Actor_TalkRequested
* Match func_8010C39C and remove unused asm
* More docs
* Mostly ocarina related docs
* All msgModes named
* Fix assetclean
* Cleanup
* Extraction fixes and headers
* Suggestions
* Review suggestions
* Change text extraction again, only extract if the headers do not already exist
* Fix
* Use ast for charmap, fix assetclean for real this time
* Review suggestions
* BGM ids and ran formatter
* Review comments
* rename include_readonly to include_data_with_rodata
* Remove leading 0s in number directives
* Review suggestions for message_data_static
* textbox pos enum comments, rename several enum names from Message to TextBox
Co-authored-by: Thar0 <maximilianc64@gmail.com>
Co-authored-by: Zelllll <56516451+Zelllll@users.noreply.github.com>
Co-authored-by: petrie911 <pmontag@DESKTOP-LG8A167.localdomain>
Co-authored-by: Roman971 <romanlasnier@hotmail.com>
2021-11-23 01:20:30 +00:00
ASSET_BIN_DIRS := $( shell find assets/* -type d -not -path "assets/xml*" -not -path "assets/text" )
2020-12-26 11:39:52 +00:00
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 ) \
z_message_PAL, message_data_static and surrounding doc (#996)
* Initial progress on z_message_PAL, very messy
* Fix merge
* Some more progress
* Fix merge
* More z_message_PAL
* Small progress
* More small progress
* message_data_static files OK
* Prepare z_message_tables
* Matched another function, small updates
* Attempt to use asm-processor static-symbols branch
* Refactor text id declarations
* Begin large text codes parser function
* Fix merge
* Refactor done
* Build OK, add color and highscore names
* Remove encoded text headers and automatically encode during build
* Fix kanfont
* Various cleanups
* DISP macros
* Another match aside data
* Further progress
* Small improvements
* Deduplicate magic values for text control codes, small improvements
* Tiny progress
* Minor cleanups
* Clean up z_message_PAL comment
* Progress on large functions
* Further progress on large functions
* Changes to mkldscript to link .data in the .rodata section
* data OK
* Few improvements
* Use gDPLoadTextureBlock macros where appropriate
* rm z_message_tables, progress on large functions
* 2 more matches
* Improvements
* Small progress
* More progress on big function
* progress
* match func_80107980
* match Message_Update
* match func_8010BED8
* done
* Progress on remaining large functions
* Small progress on largest function
* Another match, extract text and move to assets, improve text build system
* Small nonmatchings improvements
* docs wip
* Largest function maybe equivalent
* Fix merge
* Document do_action values, largest function is almost instruction-matching
* Rename NAVI do_action to NONE, as that appears to be how that value is used in practice
* Fix merge
* one match
* Last function is instruction-matching
* Fix
* Improvements thanks to engineer124
* Stack matched thanks to petrie911, now just a/v/low t regalloc issues, some cleanup
* More variables labeled, use text state enum everywhere
* More labels and names
* Fix
* Actor_IsTalking -> Actor_TalkRequested
* Match func_8010C39C and remove unused asm
* More docs
* Mostly ocarina related docs
* All msgModes named
* Fix assetclean
* Cleanup
* Extraction fixes and headers
* Suggestions
* Review suggestions
* Change text extraction again, only extract if the headers do not already exist
* Fix
* Use ast for charmap, fix assetclean for real this time
* Review suggestions
* BGM ids and ran formatter
* Review comments
* rename include_readonly to include_data_with_rodata
* Remove leading 0s in number directives
* Review suggestions for message_data_static
* textbox pos enum comments, rename several enum names from Message to TextBox
Co-authored-by: Thar0 <maximilianc64@gmail.com>
Co-authored-by: Zelllll <56516451+Zelllll@users.noreply.github.com>
Co-authored-by: petrie911 <pmontag@DESKTOP-LG8A167.localdomain>
Co-authored-by: Roman971 <romanlasnier@hotmail.com>
2021-11-23 01:20:30 +00:00
$( foreach f,$( ASSET_FILES_BIN:.bin= .bin.inc.c) ,build/$f ) \
$( foreach f,$( wildcard assets/text/*.c) ,build/$( f:.c= .o) )
2020-12-26 11:39:52 +00:00
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
2022-02-06 19:40:26 +00:00
OVL_RELOC_FILES := $( shell $( CPP) $( CPPFLAGS) $( SPEC) | grep -o '[^"]*_reloc.o' )
2021-05-02 20:21:27 +00:00
# Automatic dependency files
2022-02-06 19:40:26 +00:00
# (Only asm_processor dependencies and reloc dependencies are handled for now)
DEP_FILES := $( O_FILES:.o= .asmproc.d) $( OVL_RELOC_FILES:.o= .d)
2021-05-02 20:21:27 +00:00
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
z_message_PAL, message_data_static and surrounding doc (#996)
* Initial progress on z_message_PAL, very messy
* Fix merge
* Some more progress
* Fix merge
* More z_message_PAL
* Small progress
* More small progress
* message_data_static files OK
* Prepare z_message_tables
* Matched another function, small updates
* Attempt to use asm-processor static-symbols branch
* Refactor text id declarations
* Begin large text codes parser function
* Fix merge
* Refactor done
* Build OK, add color and highscore names
* Remove encoded text headers and automatically encode during build
* Fix kanfont
* Various cleanups
* DISP macros
* Another match aside data
* Further progress
* Small improvements
* Deduplicate magic values for text control codes, small improvements
* Tiny progress
* Minor cleanups
* Clean up z_message_PAL comment
* Progress on large functions
* Further progress on large functions
* Changes to mkldscript to link .data in the .rodata section
* data OK
* Few improvements
* Use gDPLoadTextureBlock macros where appropriate
* rm z_message_tables, progress on large functions
* 2 more matches
* Improvements
* Small progress
* More progress on big function
* progress
* match func_80107980
* match Message_Update
* match func_8010BED8
* done
* Progress on remaining large functions
* Small progress on largest function
* Another match, extract text and move to assets, improve text build system
* Small nonmatchings improvements
* docs wip
* Largest function maybe equivalent
* Fix merge
* Document do_action values, largest function is almost instruction-matching
* Rename NAVI do_action to NONE, as that appears to be how that value is used in practice
* Fix merge
* one match
* Last function is instruction-matching
* Fix
* Improvements thanks to engineer124
* Stack matched thanks to petrie911, now just a/v/low t regalloc issues, some cleanup
* More variables labeled, use text state enum everywhere
* More labels and names
* Fix
* Actor_IsTalking -> Actor_TalkRequested
* Match func_8010C39C and remove unused asm
* More docs
* Mostly ocarina related docs
* All msgModes named
* Fix assetclean
* Cleanup
* Extraction fixes and headers
* Suggestions
* Review suggestions
* Change text extraction again, only extract if the headers do not already exist
* Fix
* Use ast for charmap, fix assetclean for real this time
* Review suggestions
* BGM ids and ran formatter
* Review comments
* rename include_readonly to include_data_with_rodata
* Remove leading 0s in number directives
* Review suggestions for message_data_static
* textbox pos enum comments, rename several enum names from Message to TextBox
Co-authored-by: Thar0 <maximilianc64@gmail.com>
Co-authored-by: Zelllll <56516451+Zelllll@users.noreply.github.com>
Co-authored-by: petrie911 <pmontag@DESKTOP-LG8A167.localdomain>
Co-authored-by: Roman971 <romanlasnier@hotmail.com>
2021-11-23 01:20:30 +00:00
$( shell mkdir -p build /baserom build /assets /text $ ( foreach dir ,$ ( SRC_DIRS ) $ ( ASM_DIRS ) $ ( ASSET_BIN_DIRS ) ,build /$ ( dir ) ) )
2020-03-17 04:31:30 +00:00
2022-02-19 21:50:56 +00:00
i f e q ( $( COMPILER ) , i d o )
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
2022-03-01 19:29:42 +00:00
build/src/code/fmodf.o : OPTFLAGS := -g
2022-05-01 22:06:35 +00:00
build/src/code/__osMemset.o : OPTFLAGS := -g
build/src/code/__osMemmove.o : OPTFLAGS := -g
2020-05-01 01:49:35 +00:00
2021-12-01 00:08:57 +00:00
build/src/libultra/libc/absf.o : OPTFLAGS := -O 2 -g 3
build/src/libultra/libc/sqrt.o : OPTFLAGS := -O 2 -g 3
build/src/libultra/libc/ll.o : OPTFLAGS := -O 1
build/src/libultra/libc/ll.o : MIPS_VERSION := -mips 3 -32
build/src/libultra/libc/llcvt.o : OPTFLAGS := -O 1
build/src/libultra/libc/llcvt.o : MIPS_VERSION := -mips 3 -32
build/src/libultra/os/%.o : OPTFLAGS := -O 1
build/src/libultra/io/%.o : OPTFLAGS := -O 2
build/src/libultra/libc/%.o : OPTFLAGS := -O 2
build/src/libultra/rmon/%.o : OPTFLAGS := -O 2
build/src/libultra/gu/%.o : OPTFLAGS := -O 2
2022-01-17 23:42:33 +00:00
build/assets/misc/z_select_static/%.o : CFLAGS += -DF 3DEX_GBI
2021-12-01 00:08:57 +00:00
build/src/libultra/gu/%.o : CC := $( CC_OLD )
build/src/libultra/io/%.o : CC := $( CC_OLD )
build/src/libultra/libc/%.o : CC := $( CC_OLD )
build/src/libultra/os/%.o : CC := $( CC_OLD )
build/src/libultra/rmon/%.o : CC := $( CC_OLD )
2020-05-01 01:49:35 +00:00
2021-09-18 17:13:53 +00:00
build/src/code/jpegutils.o : CC := $( CC_OLD )
build/src/code/jpegdecoder.o : CC := $( CC_OLD )
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 ) --
2021-11-28 13:25:30 +00:00
build/src/overlays/%.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 ) --
2022-02-19 21:50:56 +00:00
e l s e
build/src/libultra/libc/ll.o : OPTFLAGS := -Ofast
build/src/%.o : CC := $( CC ) -fexec -charset =euc -jp
e n d i f
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
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)
z_message_PAL, message_data_static and surrounding doc (#996)
* Initial progress on z_message_PAL, very messy
* Fix merge
* Some more progress
* Fix merge
* More z_message_PAL
* Small progress
* More small progress
* message_data_static files OK
* Prepare z_message_tables
* Matched another function, small updates
* Attempt to use asm-processor static-symbols branch
* Refactor text id declarations
* Begin large text codes parser function
* Fix merge
* Refactor done
* Build OK, add color and highscore names
* Remove encoded text headers and automatically encode during build
* Fix kanfont
* Various cleanups
* DISP macros
* Another match aside data
* Further progress
* Small improvements
* Deduplicate magic values for text control codes, small improvements
* Tiny progress
* Minor cleanups
* Clean up z_message_PAL comment
* Progress on large functions
* Further progress on large functions
* Changes to mkldscript to link .data in the .rodata section
* data OK
* Few improvements
* Use gDPLoadTextureBlock macros where appropriate
* rm z_message_tables, progress on large functions
* 2 more matches
* Improvements
* Small progress
* More progress on big function
* progress
* match func_80107980
* match Message_Update
* match func_8010BED8
* done
* Progress on remaining large functions
* Small progress on largest function
* Another match, extract text and move to assets, improve text build system
* Small nonmatchings improvements
* docs wip
* Largest function maybe equivalent
* Fix merge
* Document do_action values, largest function is almost instruction-matching
* Rename NAVI do_action to NONE, as that appears to be how that value is used in practice
* Fix merge
* one match
* Last function is instruction-matching
* Fix
* Improvements thanks to engineer124
* Stack matched thanks to petrie911, now just a/v/low t regalloc issues, some cleanup
* More variables labeled, use text state enum everywhere
* More labels and names
* Fix
* Actor_IsTalking -> Actor_TalkRequested
* Match func_8010C39C and remove unused asm
* More docs
* Mostly ocarina related docs
* All msgModes named
* Fix assetclean
* Cleanup
* Extraction fixes and headers
* Suggestions
* Review suggestions
* Change text extraction again, only extract if the headers do not already exist
* Fix
* Use ast for charmap, fix assetclean for real this time
* Review suggestions
* BGM ids and ran formatter
* Review comments
* rename include_readonly to include_data_with_rodata
* Remove leading 0s in number directives
* Review suggestions for message_data_static
* textbox pos enum comments, rename several enum names from Message to TextBox
Co-authored-by: Thar0 <maximilianc64@gmail.com>
Co-authored-by: Zelllll <56516451+Zelllll@users.noreply.github.com>
Co-authored-by: petrie911 <pmontag@DESKTOP-LG8A167.localdomain>
Co-authored-by: Roman971 <romanlasnier@hotmail.com>
2021-11-23 01:20:30 +00:00
$( RM) -r assets/text/*.h
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
2022-01-17 00:43:07 +00:00
python3 extract_assets.py -j$( N_THREADS)
2020-03-17 04:31:30 +00:00
2020-12-22 00:14:25 +00:00
test : $( ROM )
$( EMULATOR) $( EMU_FLAGS) $<
2022-02-06 19:40:26 +00:00
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 ####
2022-02-06 19:40:26 +00:00
$(ROM) : $( ELF )
$( ELF2ROM) -cic 6105 $< $@
$(ELF) : $( TEXTURE_FILES_OUT ) $( ASSET_FILES_OUT ) $( O_FILES ) $( OVL_RELOC_FILES ) build /ldscript .txt build /undefined_syms .txt
$( LD) -T build/undefined_syms.txt -T build/ldscript.txt --no-check-sections --accept-unknown-input-arch --emit-relocs -Map build/z64.map -o $@
## Order-only prerequisites
# These ensure e.g. the O_FILES are built before the OVL_RELOC_FILES.
# The intermediate phony targets avoid quadratically-many dependencies between the targets and prerequisites.
o_files : $( O_FILES )
$(OVL_RELOC_FILES) : | o_files
asset_files : $( TEXTURE_FILES_OUT ) $( ASSET_FILES_OUT )
$(O_FILES) : | asset_files
.PHONY : o_files asset_files
build/$(SPEC) : $( SPEC )
$( CPP) $( CPPFLAGS) $< > $@
build/ldscript.txt : build /$( SPEC )
$( MKLDSCRIPT) $< $@
build/undefined_syms.txt : undefined_syms .txt
$( CPP) $( CPPFLAGS) $< > $@
2020-03-17 04:31:30 +00:00
build/baserom/%.o : baserom /%
$( OBJCOPY) -I binary -O elf32-big $< $@
build/asm/%.o : asm /%.s
2022-05-01 22:14:44 +00:00
$( CPP) $( CPPFLAGS) -Iinclude $< | $( AS) $( ASFLAGS) -o $@
2020-03-17 04:31:30 +00:00
build/data/%.o : data /%.s
2022-02-06 19:40:26 +00:00
$( AS) $( ASFLAGS) $< -o $@
2020-03-17 04:31:30 +00:00
z_message_PAL, message_data_static and surrounding doc (#996)
* Initial progress on z_message_PAL, very messy
* Fix merge
* Some more progress
* Fix merge
* More z_message_PAL
* Small progress
* More small progress
* message_data_static files OK
* Prepare z_message_tables
* Matched another function, small updates
* Attempt to use asm-processor static-symbols branch
* Refactor text id declarations
* Begin large text codes parser function
* Fix merge
* Refactor done
* Build OK, add color and highscore names
* Remove encoded text headers and automatically encode during build
* Fix kanfont
* Various cleanups
* DISP macros
* Another match aside data
* Further progress
* Small improvements
* Deduplicate magic values for text control codes, small improvements
* Tiny progress
* Minor cleanups
* Clean up z_message_PAL comment
* Progress on large functions
* Further progress on large functions
* Changes to mkldscript to link .data in the .rodata section
* data OK
* Few improvements
* Use gDPLoadTextureBlock macros where appropriate
* rm z_message_tables, progress on large functions
* 2 more matches
* Improvements
* Small progress
* More progress on big function
* progress
* match func_80107980
* match Message_Update
* match func_8010BED8
* done
* Progress on remaining large functions
* Small progress on largest function
* Another match, extract text and move to assets, improve text build system
* Small nonmatchings improvements
* docs wip
* Largest function maybe equivalent
* Fix merge
* Document do_action values, largest function is almost instruction-matching
* Rename NAVI do_action to NONE, as that appears to be how that value is used in practice
* Fix merge
* one match
* Last function is instruction-matching
* Fix
* Improvements thanks to engineer124
* Stack matched thanks to petrie911, now just a/v/low t regalloc issues, some cleanup
* More variables labeled, use text state enum everywhere
* More labels and names
* Fix
* Actor_IsTalking -> Actor_TalkRequested
* Match func_8010C39C and remove unused asm
* More docs
* Mostly ocarina related docs
* All msgModes named
* Fix assetclean
* Cleanup
* Extraction fixes and headers
* Suggestions
* Review suggestions
* Change text extraction again, only extract if the headers do not already exist
* Fix
* Use ast for charmap, fix assetclean for real this time
* Review suggestions
* BGM ids and ran formatter
* Review comments
* rename include_readonly to include_data_with_rodata
* Remove leading 0s in number directives
* Review suggestions for message_data_static
* textbox pos enum comments, rename several enum names from Message to TextBox
Co-authored-by: Thar0 <maximilianc64@gmail.com>
Co-authored-by: Zelllll <56516451+Zelllll@users.noreply.github.com>
Co-authored-by: petrie911 <pmontag@DESKTOP-LG8A167.localdomain>
Co-authored-by: Roman971 <romanlasnier@hotmail.com>
2021-11-23 01:20:30 +00:00
build/assets/text/%.enc.h : assets /text /%.h assets /text /charmap .txt
2022-02-20 19:01:06 +00:00
python3 tools/msgenc.py assets/text/charmap.txt $< $@
z_message_PAL, message_data_static and surrounding doc (#996)
* Initial progress on z_message_PAL, very messy
* Fix merge
* Some more progress
* Fix merge
* More z_message_PAL
* Small progress
* More small progress
* message_data_static files OK
* Prepare z_message_tables
* Matched another function, small updates
* Attempt to use asm-processor static-symbols branch
* Refactor text id declarations
* Begin large text codes parser function
* Fix merge
* Refactor done
* Build OK, add color and highscore names
* Remove encoded text headers and automatically encode during build
* Fix kanfont
* Various cleanups
* DISP macros
* Another match aside data
* Further progress
* Small improvements
* Deduplicate magic values for text control codes, small improvements
* Tiny progress
* Minor cleanups
* Clean up z_message_PAL comment
* Progress on large functions
* Further progress on large functions
* Changes to mkldscript to link .data in the .rodata section
* data OK
* Few improvements
* Use gDPLoadTextureBlock macros where appropriate
* rm z_message_tables, progress on large functions
* 2 more matches
* Improvements
* Small progress
* More progress on big function
* progress
* match func_80107980
* match Message_Update
* match func_8010BED8
* done
* Progress on remaining large functions
* Small progress on largest function
* Another match, extract text and move to assets, improve text build system
* Small nonmatchings improvements
* docs wip
* Largest function maybe equivalent
* Fix merge
* Document do_action values, largest function is almost instruction-matching
* Rename NAVI do_action to NONE, as that appears to be how that value is used in practice
* Fix merge
* one match
* Last function is instruction-matching
* Fix
* Improvements thanks to engineer124
* Stack matched thanks to petrie911, now just a/v/low t regalloc issues, some cleanup
* More variables labeled, use text state enum everywhere
* More labels and names
* Fix
* Actor_IsTalking -> Actor_TalkRequested
* Match func_8010C39C and remove unused asm
* More docs
* Mostly ocarina related docs
* All msgModes named
* Fix assetclean
* Cleanup
* Extraction fixes and headers
* Suggestions
* Review suggestions
* Change text extraction again, only extract if the headers do not already exist
* Fix
* Use ast for charmap, fix assetclean for real this time
* Review suggestions
* BGM ids and ran formatter
* Review comments
* rename include_readonly to include_data_with_rodata
* Remove leading 0s in number directives
* Review suggestions for message_data_static
* textbox pos enum comments, rename several enum names from Message to TextBox
Co-authored-by: Thar0 <maximilianc64@gmail.com>
Co-authored-by: Zelllll <56516451+Zelllll@users.noreply.github.com>
Co-authored-by: petrie911 <pmontag@DESKTOP-LG8A167.localdomain>
Co-authored-by: Roman971 <romanlasnier@hotmail.com>
2021-11-23 01:20:30 +00:00
build/assets/text/fra_message_data_static.o : build /assets /text /message_data .enc .h
build/assets/text/ger_message_data_static.o : build /assets /text /message_data .enc .h
build/assets/text/nes_message_data_static.o : build /assets /text /message_data .enc .h
build/assets/text/staff_message_data_static.o : build /assets /text /message_data_staff .enc .h
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
2021-11-30 23:29:09 +00:00
build/dmadata_table_spec.h : build /$( SPEC )
$( MKDMADATA) $< $@
build/src/boot/z_std_dma.o : build /dmadata_table_spec .h
build/src/dmadata/dmadata.o : build /dmadata_table_spec .h
2020-03-17 04:31:30 +00:00
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-12-01 00:08:57 +00:00
build/src/libultra/libc/ll.o : src /libultra /libc /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)
2021-12-01 00:08:57 +00:00
build/src/libultra/libc/llcvt.o : src /libultra /libc /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)
2022-02-06 19:40:26 +00:00
build/src/overlays/%_reloc.o : build /$( SPEC )
$( FADO) $$ ( tools/reloc_prereq $< $( notdir $* ) ) -n $( notdir $* ) -o $( @:.o= .s) -M $( @:.o= .d)
$( AS) $( ASFLAGS) $( @:.o= .s) -o $@
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 )