sm64pc/Makefile

890 lines
28 KiB
Makefile
Raw Normal View History

2020-11-23 10:15:50 +01:00
################################################################################
############################### SM64PC Makefile ################################
################################################################################
2020-11-23 10:15:50 +01:00
## Default target ##
2019-08-25 06:46:40 +02:00
default: all
2020-11-23 10:15:50 +01:00
################################ Build Options #################################
2019-08-25 06:46:40 +02:00
2020-11-23 10:15:50 +01:00
## These options can either be changed by modifying the makefile, or
## by building with 'make SETTING=value'. 'make clean' may be required.
2019-12-02 03:52:53 +01:00
2020-06-20 03:32:12 +02:00
# Build debug version
DEBUG ?= 0
2019-08-25 06:46:40 +02:00
# Version of the game to build
VERSION ?= us
# Graphics microcode used
2020-06-20 03:32:12 +02:00
GRUCODE ?= f3dex2e
2019-12-02 03:52:53 +01:00
# If NON_MATCHING is 1, define the NON_MATCHING and AVOID_UB macros when building (recommended)
NON_MATCHING ?= 1
# Build and optimize for Raspberry Pi(s)
TARGET_RPI ?= 0
# Build for Emscripten/WebGL
TARGET_WEB ?= 0
# Build for Nintendo Switch
TARGET_SWITCH ?= 0
2020-05-16 21:30:27 +02:00
# Makeflag to enable OSX fixes
OSX_BUILD ?= 0
# Specify the target you are building for, TARGET_BITS=0 means native
TARGET_ARCH ?= native
TARGET_BITS ?= 0
2020-05-10 20:08:59 +02:00
# Disable better camera by default
BETTERCAMERA ?= 0
2020-05-12 09:26:16 +02:00
# Disable no drawing distance by default
NODRAWINGDISTANCE ?= 0
# Disable texture fixes by default (helps with them purists)
TEXTURE_FIX ?= 0
2020-06-08 22:48:23 +02:00
# Enable Discord Rich Presence
DISCORDRPC ?= 0
# Various workarounds for weird toolchains
NO_BZERO_BCOPY ?= 0
NO_LDIV ?= 0
2020-11-23 10:15:50 +01:00
## Backend selection
# Renderers: GL, GL_LEGACY, D3D11, D3D12
RENDER_API ?= GL
# Window managers: SDL2, DXGI (forced if D3D11 or D3D12 in RENDER_API)
WINDOW_API ?= SDL2
# Audio backends: SDL2
AUDIO_API ?= SDL2
# Controller backends (can have multiple, space separated): SDL2
CONTROLLER_API ?= SDL2
2020-11-23 10:15:50 +01:00
## External assets
2020-11-23 10:15:50 +01:00
# Asset directory
BASEDIR ?= res
# Create zip file with legacy assets
LEGACY_RES ?= 0
# Copy assets to BASEDIR? (useful for iterative debugging)
NO_COPY ?= 0
2020-11-23 10:15:50 +01:00
################################# OS Detection #################################
WINDOWS_BUILD ?= 0
ifeq ($(OS),Windows_NT)
HOST_OS ?= Windows
else
HOST_OS ?= $(shell uname -s 2>/dev/null || echo Unknown)
# some weird MINGW/Cygwin env that doesn't define $OS
ifneq (,$(findstring MINGW,HOST_OS))
HOST_OS := Windows
endif
endif
ifeq ($(TARGET_WEB)$(TARGET_RPI)$(TARGET_SWITCH),000)
2020-06-07 14:16:09 +02:00
ifeq ($(HOST_OS),Windows)
WINDOWS_BUILD := 1
endif
endif
# MXE overrides
ifeq ($(WINDOWS_BUILD),1)
ifeq ($(CROSS),i686-w64-mingw32.static-)
TARGET_ARCH = i386pe
TARGET_BITS = 32
NO_BZERO_BCOPY := 1
else ifeq ($(CROSS),x86_64-w64-mingw32.static-)
TARGET_ARCH = i386pe
TARGET_BITS = 64
NO_BZERO_BCOPY := 1
endif
endif
2020-05-07 20:21:22 +02:00
# macOS overrides
ifeq ($(HOST_OS),Darwin)
OSX_BUILD := 1
# Using MacPorts?
ifeq ($(shell test -d /opt/local/lib && echo y),y)
OSX_GCC_VER = $(shell find /opt/local/bin/gcc* | grep -oE '[[:digit:]]+' | sort -n | uniq | tail -1)
CC := gcc-mp-$(OSX_GCC_VER)
CXX := g++-mp-$(OSX_GCC_VER)
CPP := cpp-mp-$(OSX_GCC_VER) -P
PLATFORM_CFLAGS := -I /opt/local/include
PLATFORM_LDFLAGS := -L /opt/local/lib
else
# Using Homebrew?
ifeq ($(shell which brew >/dev/null 2>&1 && echo y),y)
OSX_GCC_VER = $(shell find `brew --prefix`/bin/gcc* | grep -oE '[[:digit:]]+' | sort -n | uniq | tail -1)
CC := gcc-$(OSX_GCC_VER)
CXX := g++-$(OSX_GCC_VER)
CPP := cpp-$(OSX_GCC_VER) -P
PLATFORM_CFLAGS := -I /usr/local/include
PLATFORM_LDFLAGS := -L /usr/local/lib
else
$(error No suitable macOS toolchain found, have you installed Homebrew?)
endif
endif
endif
2020-05-07 20:21:22 +02:00
ifneq ($(TARGET_BITS),0)
BITS := -m$(TARGET_BITS)
endif
# Release (version) flag defs
VERSION_DEF := VERSION_US
2019-08-25 06:46:40 +02:00
2021-04-14 08:13:59 +02:00
TARGET := moon64.$(VERSION)
2020-06-02 18:44:34 +02:00
VERSION_CFLAGS := -D$(VERSION_DEF) -D_LANGUAGE_C
VERSION_ASFLAGS := --defsym $(VERSION_DEF)=1
# Stuff for showing the git hash in the title bar
GIT_HASH := $(shell git rev-parse --short HEAD)
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
VERSION_CFLAGS += -DGIT_HASH="\"$(GIT_HASH)\""
2020-08-14 02:31:37 +02:00
ifeq ($(shell git rev-parse --abbrev-ref HEAD),nightly)
2020-08-14 02:31:37 +02:00
VERSION_CFLAGS += -DNIGHTLY
endif
GRUCODE_DEF := F3DEX_GBI_2E
TARGET := $(TARGET).f3dex2e
2019-08-25 06:46:40 +02:00
2020-06-02 18:44:34 +02:00
GRUCODE_CFLAGS := -D$(GRUCODE_DEF)
GRUCODE_ASFLAGS := $(GRUCODE_ASFLAGS) --defsym $(GRUCODE_DEF)=1
# Default build is for PC now
VERSION_CFLAGS := $(VERSION_CFLAGS) -DNON_MATCHING -DAVOID_UB
2019-08-25 06:46:40 +02:00
ifeq ($(TARGET_RPI),1) # Define RPi to change SDL2 title & GLES2 hints
VERSION_CFLAGS += -DUSE_GLES
2019-08-25 06:46:40 +02:00
endif
ifeq ($(TARGET_SWITCH),1)
VERSION_CFLAGS += -DUSE_GLES -DTARGET_SWITCH -DLUA_USE_LINUX
endif
2020-05-16 21:30:27 +02:00
ifeq ($(OSX_BUILD),1) # Modify GFX & SDL2 for OSX GL
2020-11-23 10:15:50 +01:00
VERSION_CFLAGS += -DOSX_BUILD
2020-05-16 21:30:27 +02:00
endif
VERSION_ASFLAGS := --defsym AVOID_UB=1
2020-05-07 20:21:22 +02:00
ifeq ($(TARGET_WEB),1)
2020-06-16 23:15:27 +02:00
VERSION_CFLAGS := $(VERSION_CFLAGS) -DTARGET_WEB -DUSE_GLES
2020-05-07 20:21:22 +02:00
endif
# Check backends
ifneq (,$(filter $(RENDER_API),D3D11 D3D12))
ifneq ($(WINDOWS_BUILD),1)
$(error DirectX is only supported on Windows)
endif
ifneq ($(WINDOW_API),DXGI)
$(warning DirectX renderers require DXGI, forcing WINDOW_API value)
WINDOW_API := DXGI
endif
else
ifeq ($(WINDOW_API),DXGI)
$(error DXGI can only be used with DirectX renderers)
endif
endif
# Moon64 custom flags
# ifeq ($(TOGGLE_GAME_DEBUG),1)
# VERSION_CFLAGS += -DTOGGLE_GAME_DEBUG
# endif
2020-11-23 10:15:50 +01:00
############################ Universal Dependencies ############################
2019-08-25 06:46:40 +02:00
# (This is a bit hacky, but a lot of rules implicitly depend
# on tools and assets, and we use directory globs further down
# in the makefile that we want should cover assets.)
ifneq ($(MAKECMDGOALS),clean)
ifneq ($(MAKECMDGOALS),cleantools)
2019-08-25 06:46:40 +02:00
ifneq ($(MAKECMDGOALS),distclean)
# Make sure assets exist
NOEXTRACT ?= 0
ifeq ($(NOEXTRACT),0)
DUMMY != ./extract_assets.py $(VERSION) >&2 || echo FAIL
ifeq ($(DUMMY),FAIL)
$(error Failed to extract assets)
endif
endif
# Make tools if out of date
DUMMY != CC=$(CC) CXX=$(CXX) $(MAKE) -C tools >&2 || echo FAIL
2019-08-25 06:46:40 +02:00
ifeq ($(DUMMY),FAIL)
$(error Failed to build tools)
endif
endif
2019-08-25 06:46:40 +02:00
endif
endif
2020-11-23 10:15:50 +01:00
######################### Target Executable and Sources ########################
2019-08-25 06:46:40 +02:00
# BUILD_DIR is location where all build artifacts are placed
BUILD_DIR_BASE := build
2020-05-07 20:21:22 +02:00
ifeq ($(TARGET_WEB),1)
BUILD_DIR := $(BUILD_DIR_BASE)/$(VERSION)_web
else ifeq ($(TARGET_SWITCH),1)
BUILD_DIR := $(BUILD_DIR_BASE)/$(VERSION)_nx
2020-05-07 20:21:22 +02:00
else
BUILD_DIR := $(BUILD_DIR_BASE)/$(VERSION)_pc
endif
2019-08-25 06:46:40 +02:00
LIBULTRA := $(BUILD_DIR)/libultra.a
2020-05-07 20:21:22 +02:00
ifeq ($(TARGET_WEB),1)
EXE := $(BUILD_DIR)/$(TARGET).html
2020-11-23 10:15:50 +01:00
else
ifeq ($(WINDOWS_BUILD),1)
EXE := $(BUILD_DIR)/$(TARGET).exe
2020-11-23 10:15:50 +01:00
else # Linux builds/binary namer
ifeq ($(TARGET_RPI),1)
EXE := $(BUILD_DIR)/$(TARGET).arm
else
EXE := $(BUILD_DIR)/$(TARGET)
endif
endif
endif
2019-08-25 06:46:40 +02:00
ELF := $(BUILD_DIR)/$(TARGET).elf
LD_SCRIPT := sm64.ld
2019-11-03 20:36:27 +01:00
MIO0_DIR := $(BUILD_DIR)/bin
2019-08-25 06:46:40 +02:00
SOUND_BIN_DIR := $(BUILD_DIR)/sound
TEXTURE_DIR := textures
ACTOR_DIR := actors
2019-11-03 20:36:27 +01:00
LEVEL_DIRS := $(patsubst levels/%,%,$(dir $(wildcard levels/*/header.h)))
2019-08-25 06:46:40 +02:00
# Directories containing source files
# Hi, I'm a PC
SRC_DIRS := src src/engine src/game src/audio src/menu src/buffers actors levels bin data assets src/text src/text/libs src/pc src/pc/gfx src/pc/audio src/pc/controller src/pc/fs src/pc/fs/packtypes src/nx
ifeq ($(WINDOWS_BUILD),1)
VERSION_CFLAGS += -DDISABLE_CURL_SUPPORT
endif
################################
# Moon64 Source Code #
################################
# Moon64 SRC [Main]
SRC_DIRS += src/moon src/moon/texts src/moon/utils src/moon/network
# Moon64 SRC [View]
SRC_DIRS += src/moon/ui src/moon/ui/interfaces src/moon/ui/screens src/moon/ui/screens/options src/moon/ui/screens/options/categories src/moon/ui/utils src/moon/ui/widgets src/moon/ui/screens/addons
2021-04-14 08:13:59 +02:00
# Moon64 SRC [IO]
SRC_DIRS += src/moon/io src/moon/io/modules
# Moon64 SRC [Entity]
SRC_DIRS += src/moon/entity src/moon/entity/interfaces
# Moon64 SRC [Mod-Engine]
SRC_DIRS += src/moon/mod-engine src/moon/mod-engine/modules
# Moon64 SRC [Mod-Engine - Texture Module]
SRC_DIRS += src/moon/mod-engine/textures src/moon/mod-engine/textures/assets src/moon/mod-engine/textures/modifiers
# Moon64 SRC [Mod-Engine - Hook Module]
SRC_DIRS += src/moon/mod-engine/hooks
2021-05-18 23:58:02 +02:00
# Moon64 SRC [Mod-Engine - Shaders Module]
SRC_DIRS += src/moon/mod-engine/shaders
# Moon64 LIB [RapidJSON]
2021-04-14 08:13:59 +02:00
SRC_DIRS += src/moon/libs/rapidjson src/moon/libs/rapidjson/error src/moon/libs/rapidjson/internal src/moon/libs/rapidjson/msinttypes
# Moon64 LIB [Lua]
SRC_DIRS += src/moon/libs/lua
# Moon64 LIB [Miniz]
SRC_DIRS += src/moon/libs/miniz
# Moon64 LIB [nlohmann json]
SRC_DIRS += src/moon/libs/nlohmann
# Moon64 LIB [MoonFS API]
SRC_DIRS += src/moon/fs
################################
2020-06-08 22:48:23 +02:00
ifeq ($(DISCORDRPC),1)
ifneq ($(TARGET_SWITCH)$(TARGET_WEB)$(TARGET_RPI),000)
$(error Discord RPC does not work on this target)
endif
2020-06-08 22:48:23 +02:00
SRC_DIRS += src/pc/discord
endif
2019-08-25 06:46:40 +02:00
BIN_DIRS := bin bin/$(VERSION)
ULTRA_SRC_DIRS := lib/src lib/src/math
ULTRA_ASM_DIRS := lib/asm lib/data
ULTRA_BIN_DIRS := lib/bin
GODDARD_SRC_DIRS := src/goddard src/goddard/dynlists
2020-04-03 20:57:26 +02:00
MIPSISET := -mips2
MIPSBIT := -32
2019-08-25 06:46:40 +02:00
ifeq ($(DEBUG),1)
OPT_FLAGS := -g
2019-08-25 06:46:40 +02:00
else
OPT_FLAGS := -O2
2019-08-25 06:46:40 +02:00
endif
# Set BITS (32/64) to compile for
OPT_FLAGS += $(BITS)
2020-05-07 20:21:22 +02:00
ifeq ($(TARGET_WEB),1)
OPT_FLAGS := -O2 -g4 --source-map-base http://localhost:8080/
endif
ifeq ($(TARGET_RPI),1)
machine = $(shell sh -c 'uname -m 2>/dev/null || echo unknown')
# Raspberry Pi B+, Zero, etc
ifneq (,$(findstring armv6l,$(machine)))
OPT_FLAGS := -march=armv6zk+fp -mfpu=vfp -Ofast
endif
# Raspberry Pi 2 and 3 in ARM 32bit mode
ifneq (,$(findstring armv7l,$(machine)))
model = $(shell sh -c 'cat /sys/firmware/devicetree/base/model 2>/dev/null || echo unknown')
ifneq (,$(findstring 3,$(model)))
2020-11-23 10:15:50 +01:00
OPT_FLAGS := -march=armv8-a+crc -mtune=cortex-a53 -mfpu=neon-fp-armv8 -O3
else
OPT_FLAGS := -march=armv7-a -mtune=cortex-a7 -mfpu=neon-vfpv4 -O3
endif
endif
# RPi3 or RPi4, in ARM64 (aarch64) mode. NEEDS TESTING 32BIT.
# DO NOT pass -mfpu stuff here, thats for 32bit ARM only and will fail for 64bit ARM.
ifneq (,$(findstring aarch64,$(machine)))
model = $(shell sh -c 'cat /sys/firmware/devicetree/base/model 2>/dev/null || echo unknown')
ifneq (,$(findstring 3,$(model)))
2020-11-23 10:15:50 +01:00
OPT_FLAGS := -march=armv8-a+crc -mtune=cortex-a53 -O3
else ifneq (,$(findstring 4,$(model)))
2020-11-23 10:15:50 +01:00
OPT_FLAGS := -march=armv8-a+crc+simd -mtune=cortex-a72 -O3
endif
endif
2020-04-03 20:57:26 +02:00
endif
2019-08-25 06:46:40 +02:00
# Source code files
2019-11-03 20:36:27 +01:00
LEVEL_C_FILES := $(wildcard levels/*/leveldata.c) $(wildcard levels/*/script.c) $(wildcard levels/*/geo.c)
C_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.c)) $(LEVEL_C_FILES)
2020-05-07 20:21:22 +02:00
CXX_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.cpp))
2019-08-25 06:46:40 +02:00
S_FILES := $(foreach dir,$(ASM_DIRS),$(wildcard $(dir)/*.s))
GODDARD_C_FILES := $(foreach dir,$(GODDARD_SRC_DIRS),$(wildcard $(dir)/*.c))
GENERATED_C_FILES := $(BUILD_DIR)/assets/mario_anim_data.c $(BUILD_DIR)/assets/demo_data.c
2020-05-07 20:21:22 +02:00
2020-06-21 01:21:46 +02:00
ULTRA_C_FILES := \
alBnkfNew.c \
guLookAtRef.c \
guMtxF2L.c \
guNormalize.c \
guOrthoF.c \
guPerspectiveF.c \
guRotateF.c \
guScaleF.c \
guTranslateF.c \
ldiv.c
C_FILES := $(filter-out src/game/main.c,$(C_FILES))
ULTRA_C_FILES := $(addprefix lib/src/,$(ULTRA_C_FILES))
# "If we're not N64, use the above"
2019-08-25 06:46:40 +02:00
SOUND_BANK_FILES := $(wildcard sound/sound_banks/*.json)
SOUND_SEQUENCE_FILES := $(wildcard sound/sequences/$(VERSION)/*.m64) \
$(wildcard sound/sequences/*.m64) \
$(foreach file,$(wildcard sound/sequences/$(VERSION)/*.s),$(BUILD_DIR)/$(file:.s=.m64)) \
$(foreach file,$(wildcard sound/sequences/*.s),$(BUILD_DIR)/$(file:.s=.m64))
2020-03-02 04:42:52 +01:00
2019-08-25 06:46:40 +02:00
SOUND_SAMPLE_DIRS := $(wildcard sound/samples/*)
SOUND_SAMPLE_AIFFS := $(foreach dir,$(SOUND_SAMPLE_DIRS),$(wildcard $(dir)/*.aiff))
SOUND_SAMPLE_TABLES := $(foreach file,$(SOUND_SAMPLE_AIFFS),$(BUILD_DIR)/$(file:.aiff=.table))
SOUND_SAMPLE_AIFCS := $(foreach file,$(SOUND_SAMPLE_AIFFS),$(BUILD_DIR)/$(file:.aiff=.aifc))
2020-06-02 18:44:34 +02:00
SOUND_OBJ_FILES := $(SOUND_BIN_DIR)/sound_data.o
2019-08-25 06:46:40 +02:00
# Object files
2020-11-23 10:15:50 +01:00
O_FILES := $(foreach file,$(C_FILES),$(BUILD_DIR)/$(file:.c=.o)) \
$(foreach file,$(CXX_FILES),$(BUILD_DIR)/$(file:.cpp=.o)) \
$(foreach file,$(S_FILES),$(BUILD_DIR)/$(file:.s=.o)) \
$(foreach file,$(GENERATED_C_FILES),$(file:.c=.o))
2019-08-25 06:46:40 +02:00
2020-11-23 10:15:50 +01:00
ULTRA_O_FILES := $(foreach file,$(ULTRA_S_FILES),$(BUILD_DIR)/$(file:.s=.o)) \
$(foreach file,$(ULTRA_C_FILES),$(BUILD_DIR)/$(file:.c=.o))
2019-08-25 06:46:40 +02:00
GODDARD_O_FILES := $(foreach file,$(GODDARD_C_FILES),$(BUILD_DIR)/$(file:.c=.o))
2020-06-08 22:48:23 +02:00
RPC_LIBS :=
ifeq ($(DISCORDRPC),1)
ifeq ($(WINDOWS_BUILD),1)
2020-06-09 19:19:22 +02:00
RPC_LIBS := lib/discord/libdiscord-rpc.dll
else ifeq ($(OSX_BUILD),1)
2020-06-08 22:48:23 +02:00
# needs testing
2020-06-09 19:19:22 +02:00
RPC_LIBS := lib/discord/libdiscord-rpc.dylib
2020-06-08 22:48:23 +02:00
else
2020-06-09 19:19:22 +02:00
RPC_LIBS := lib/discord/libdiscord-rpc.so
2020-06-08 22:48:23 +02:00
endif
endif
2019-08-25 06:46:40 +02:00
# Automatic dependency files
DEP_FILES := $(O_FILES:.o=.d) $(ULTRA_O_FILES:.o=.d) $(GODDARD_O_FILES:.o=.d) $(BUILD_DIR)/$(LD_SCRIPT).d
# Segment elf files
SEG_FILES := $(SEGMENT_ELF_FILES) $(ACTOR_ELF_FILES) $(LEVEL_ELF_FILES)
2020-11-23 10:15:50 +01:00
############################ Compiler Options ##################################
INCLUDE_CFLAGS := -I include -I $(BUILD_DIR) -I $(BUILD_DIR)/include -I src -I .
2020-05-07 20:21:22 +02:00
ENDIAN_BITWIDTH := $(BUILD_DIR)/endian-and-bitwidth
# Huge deleted N64 section was here
2020-05-07 20:21:22 +02:00
ifeq ($(TARGET_SWITCH),1)
ifeq ($(strip $(DEVKITPRO)),)
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
endif
export PATH := $(DEVKITPRO)/devkitA64/bin:$(PATH)
PORTLIBS ?= $(DEVKITPRO)/portlibs/switch
LIBNX ?= $(DEVKITPRO)/libnx
CROSS ?= aarch64-none-elf-
SDLCROSS :=
CC := $(CROSS)gcc
CXX := $(CROSS)g++
STRIP := $(CROSS)strip
NXARCH := -march=armv8-a+crc+crypto -mtune=cortex-a57 -mtp=soft -fPIC -ftls-model=local-exec
APP_TITLE := Moon64 - [$(GIT_BRANCH)]
APP_AUTHOR := Nintendo, n64decomp team, UnderVolt team
APP_VERSION := $(GIT_HASH)
APP_ICON := $(CURDIR)/textures/logo/moon64-logo.jpg
INCLUDE_CFLAGS += -isystem$(LIBNX)/include -I$(PORTLIBS)/include
OPT_FLAGS := -O2
endif
# for some reason sdl-config in dka64 is not prefixed, while pkg-config is
SDLCROSS ?= $(CROSS)
AS := $(CROSS)as
2020-05-16 21:30:27 +02:00
ifeq ($(OSX_BUILD),1)
AS := i686-w64-mingw32-as
2020-05-16 21:30:27 +02:00
endif
ifneq ($(TARGET_WEB),1) # As in, not-web PC port
2020-07-14 18:54:07 +02:00
CC ?= $(CROSS)gcc
CXX ?= $(CROSS)g++
2020-05-07 20:21:22 +02:00
else
CC := emcc
2020-06-16 21:24:54 +02:00
CXX := emcc
2020-05-07 20:21:22 +02:00
endif
LD := $(CC)
2020-06-08 22:48:23 +02:00
ifeq ($(DISCORDRPC),1)
LD := $(CXX)
else ifeq ($(WINDOWS_BUILD),1)
ifeq ($(CROSS),i686-w64-mingw32.static-) # fixes compilation in MXE on Linux and WSL
LD := $(CC)
else ifeq ($(CROSS),x86_64-w64-mingw32.static-)
LD := $(CC)
else
LD := $(CXX)
endif
2020-05-07 20:21:22 +02:00
endif
ifeq ($(WINDOWS_BUILD),1) # fixes compilation in MXE on Linux and WSL
CPP := cpp -P
2020-05-16 17:56:58 +02:00
OBJCOPY := objcopy
2020-05-16 21:30:27 +02:00
OBJDUMP := $(CROSS)objdump
else ifeq ($(OSX_BUILD),1)
OBJDUMP := i686-w64-mingw32-objdump
OBJCOPY := i686-w64-mingw32-objcopy
2020-05-16 21:30:27 +02:00
else # Linux & other builds
2020-05-16 18:01:23 +02:00
CPP := $(CROSS)cpp -P
2020-05-16 17:56:58 +02:00
OBJCOPY := $(CROSS)objcopy
2020-05-16 21:30:27 +02:00
OBJDUMP := $(CROSS)objdump
endif
2020-05-07 20:21:22 +02:00
PYTHON := python3
SDLCONFIG := $(SDLCROSS)sdl2-config
2020-05-07 20:21:22 +02:00
# configure backend flags
BACKEND_CFLAGS := -DRAPI_$(RENDER_API)=1 -DWAPI_$(WINDOW_API)=1 -DAAPI_$(AUDIO_API)=1
# can have multiple controller APIs
BACKEND_CFLAGS += $(foreach capi,$(CONTROLLER_API),-DCAPI_$(capi)=1)
BACKEND_LDFLAGS :=
SDL2_USED := 0
# for now, it's either SDL+GL or DXGI+DirectX, so choose based on WAPI
ifeq ($(WINDOW_API),DXGI)
DXBITS := `cat $(ENDIAN_BITWIDTH) | tr ' ' '\n' | tail -1`
2020-07-07 13:18:46 +02:00
ifeq ($(RENDER_API),D3D12)
BACKEND_CFLAGS += -Iinclude/dxsdk
endif
BACKEND_LDFLAGS += -ld3dcompiler -ldxgi -ldxguid
BACKEND_LDFLAGS += -lsetupapi -ldinput8 -luser32 -lgdi32 -limm32 -lole32 -loleaut32 -lshell32 -lwinmm -lversion -luuid -static
else ifeq ($(WINDOW_API),SDL2)
ifeq ($(WINDOWS_BUILD),1)
BACKEND_LDFLAGS += -lglew32 -lglu32 -lopengl32
else ifneq ($(TARGET_RPI)$(TARGET_SWITCH),00)
BACKEND_LDFLAGS += -lGLESv2
else ifeq ($(OSX_BUILD),1)
BACKEND_LDFLAGS += -framework OpenGL $(shell pkg-config --libs glew)
else
BACKEND_LDFLAGS += -lGL
endif
SDL_USED := 2
endif
ifeq ($(AUDIO_API),SDL2)
SDL_USED := 2
endif
ifneq (,$(findstring SDL,$(CONTROLLER_API)))
SDL_USED := 2
endif
# SDL can be used by different systems, so we consolidate all of that shit into this
ifeq ($(SDL_USED),2)
BACKEND_CFLAGS += -DHAVE_SDL2=1 $(shell $(SDLCONFIG) --cflags)
ifeq ($(WINDOWS_BUILD),1)
BACKEND_LDFLAGS += $(shell $(SDLCONFIG) --static-libs) -lsetupapi -luser32 -limm32 -lole32 -loleaut32 -lshell32 -lwinmm -lversion
else
BACKEND_LDFLAGS += $(shell $(SDLCONFIG) --libs)
endif
endif
2020-05-07 20:21:22 +02:00
ifeq ($(WINDOWS_BUILD),1)
CC_CHECK := $(CC) -fsyntax-only -fsigned-char $(BACKEND_CFLAGS) $(INCLUDE_CFLAGS) -Wall -Wextra -Wno-format-security $(VERSION_CFLAGS) $(GRUCODE_CFLAGS)
CFLAGS := $(OPT_FLAGS) $(INCLUDE_CFLAGS) $(BACKEND_CFLAGS) $(VERSION_CFLAGS) $(GRUCODE_CFLAGS) -fno-strict-aliasing -fwrapv
2020-05-07 20:21:22 +02:00
else ifeq ($(TARGET_WEB),1)
CC_CHECK := $(CC) -fsyntax-only -fsigned-char $(BACKEND_CFLAGS) $(INCLUDE_CFLAGS) -Wall -Wextra -Wno-format-security $(VERSION_CFLAGS) $(GRUCODE_CFLAGS) -s USE_SDL=2
CFLAGS := $(OPT_FLAGS) $(INCLUDE_CFLAGS) $(BACKEND_CFLAGS) $(VERSION_CFLAGS) $(GRUCODE_CFLAGS) -fno-strict-aliasing -fwrapv -s USE_SDL=2
else ifeq ($(TARGET_SWITCH),1)
CC_CHECK := $(CC) $(NXARCH) -fsyntax-only -fsigned-char $(BACKEND_CFLAGS) $(INCLUDE_CFLAGS) -Wall -Wextra -Wno-format-security $(VERSION_CFLAGS) $(GRUCODE_CFLAGS) -D__SWITCH__=1
CFLAGS := $(NXARCH) $(OPT_FLAGS) $(INCLUDE_CFLAGS) $(BACKEND_CFLAGS) $(VERSION_CFLAGS) $(GRUCODE_CFLAGS) -fno-strict-aliasing -ftls-model=local-exec -fPIC -fwrapv -D__SWITCH__=1
# Linux / Other builds below
2020-05-07 20:21:22 +02:00
else
CC_CHECK := $(CC) -fsyntax-only -fsigned-char $(BACKEND_CFLAGS) $(PLATFORM_CFLAGS) $(INCLUDE_CFLAGS) -Wall -Wextra -Wno-format-security $(VERSION_CFLAGS) $(GRUCODE_CFLAGS)
CFLAGS := $(OPT_FLAGS) $(PLATFORM_CFLAGS) $(INCLUDE_CFLAGS) $(BACKEND_CFLAGS) $(VERSION_CFLAGS) $(GRUCODE_CFLAGS) -fno-strict-aliasing -fwrapv
2020-05-07 20:21:22 +02:00
endif
################################
# Moon64 Custom Flags #
################################
# Moon64 Enable filesystem library and C++17
CXXFLAGS := -std=c++17
LDFLAGS += -lstdc++fs
# ifeq ($(TOGGLE_GAME_DEBUG),1)
# VERSION_CFLAGS += -DTOGGLE_GAME_DEBUG
# endif
################################
# Check for enhancement options
# Check for Puppycam option
ifeq ($(BETTERCAMERA),1)
CC_CHECK += -DBETTERCAMERA
CFLAGS += -DBETTERCAMERA
endif
2020-05-12 09:26:16 +02:00
# Check for no drawing distance option
ifeq ($(NODRAWINGDISTANCE),1)
CC_CHECK += -DNODRAWINGDISTANCE
CFLAGS += -DNODRAWINGDISTANCE
2020-05-12 09:26:16 +02:00
endif
2020-06-08 22:48:23 +02:00
# Check for Discord Rich Presence option
ifeq ($(DISCORDRPC),1)
2020-06-02 18:44:34 +02:00
CC_CHECK += -DDISCORDRPC
CFLAGS += -DDISCORDRPC
2020-06-08 22:48:23 +02:00
endif
# Check for texture fix option
ifeq ($(TEXTURE_FIX),1)
CC_CHECK += -DTEXTURE_FIX
CFLAGS += -DTEXTURE_FIX
endif
2020-05-19 15:32:01 +02:00
# Check for no bzero/bcopy workaround option
ifeq ($(NO_BZERO_BCOPY),1)
CC_CHECK += -DNO_BZERO_BCOPY
CFLAGS += -DNO_BZERO_BCOPY
endif
# Use internal ldiv()/lldiv()
ifeq ($(NO_LDIV),1)
CC_CHECK += -DNO_LDIV
CFLAGS += -DNO_LDIV
endif
# Use OpenGL 1.3
ifeq ($(LEGACY_GL),1)
CC_CHECK += -DLEGACY_GL
CFLAGS += -DLEGACY_GL
endif
# Load external textures
2020-09-07 04:14:13 +02:00
CC_CHECK += -DFS_BASEDIR="\"$(BASEDIR)\""
CFLAGS += -DFS_BASEDIR="\"$(BASEDIR)\""
# tell skyconv to write names instead of actual texture data and save the split tiles so we can use them later
SKYTILE_DIR := $(BUILD_DIR)/textures/skybox_tiles
2020-05-07 20:21:22 +02:00
ASFLAGS := -I include -I $(BUILD_DIR) $(VERSION_ASFLAGS)
ifeq ($(TARGET_WEB),1)
LDFLAGS := -lm -lGL -lSDL2 -no-pie -s TOTAL_MEMORY=20MB -g4 --source-map-base http://localhost:8080/ -s "EXTRA_EXPORTED_RUNTIME_METHODS=['callMain']"
2020-05-16 19:59:27 +02:00
else ifeq ($(WINDOWS_BUILD),1)
2021-05-10 15:42:03 +02:00
LDFLAGS := $(BITS) -march=$(TARGET_ARCH) -Llib -lpthread $(BACKEND_LDFLAGS) -static
ifeq ($(CROSS),)
LDFLAGS += -no-pie
2020-05-16 19:35:56 +02:00
endif
ifeq ($(WINDOWS_CONSOLE),1)
LDFLAGS += -mconsole
endif
2020-05-16 19:59:27 +02:00
else ifeq ($(TARGET_RPI),1)
2021-04-27 06:09:27 +02:00
LDFLAGS := $(OPT_FLAGS) -lm $(BACKEND_LDFLAGS) -no-pie -lcurl
else ifeq ($(OSX_BUILD),1)
2021-04-27 06:09:27 +02:00
LDFLAGS := -lm $(PLATFORM_LDFLAGS) $(BACKEND_LDFLAGS) -lpthread -lcurl
else ifeq ($(TARGET_SWITCH),1)
2021-04-27 06:09:27 +02:00
LDFLAGS := -specs=$(LIBNX)/switch.specs $(NXARCH) $(OPT_FLAGS) -no-pie -L$(LIBNX)/lib $(BACKEND_LDFLAGS) -lnx -lm `curl-config --libs`
2020-05-16 21:30:27 +02:00
else
2021-04-27 06:09:27 +02:00
LDFLAGS := $(BITS) -march=$(TARGET_ARCH) -lm $(BACKEND_LDFLAGS) -no-pie -lpthread -lcurl
ifeq ($(DISCORDRPC),1)
LDFLAGS += -ldl -Wl,-rpath .
endif
2020-05-16 21:30:27 +02:00
endif # End of LDFLAGS
2019-08-25 06:46:40 +02:00
2021-04-14 08:13:59 +02:00
LDFLAGS += -lstdc++
2020-03-02 04:42:52 +01:00
# Prevent a crash with -sopt
export LANG := C
2020-11-23 10:15:50 +01:00
################################# Other Tools ##################################
# N64 conversion tools
2019-08-25 06:46:40 +02:00
TOOLS_DIR = tools
AIFF_EXTRACT_CODEBOOK = $(TOOLS_DIR)/aiff_extract_codebook
VADPCM_ENC = $(TOOLS_DIR)/vadpcm_enc
2019-11-03 20:36:27 +01:00
EXTRACT_DATA_FOR_MIO = $(TOOLS_DIR)/extract_data_for_mio
ZEROTERM = $(PYTHON) $(TOOLS_DIR)/zeroterm.py
2019-08-25 06:46:40 +02:00
2020-11-23 10:15:50 +01:00
############################### Dependency Check ###############################
2019-08-25 06:46:40 +02:00
# Stubbed
2019-08-25 06:46:40 +02:00
2020-11-23 10:15:50 +01:00
#################################### Targets ###################################
2019-08-25 06:46:40 +02:00
2020-05-07 20:21:22 +02:00
all: $(EXE)
ifeq ($(TARGET_SWITCH),1)
all: $(EXE).nro
endif
2019-08-25 06:46:40 +02:00
ADDONS := addons
ADDONS_PATH := $(BUILD_DIR)/$(ADDONS)/
BASEPACK_PATH := $(BUILD_DIR)/$(BASEDIR)/
BASEPACK_LST := $(BUILD_DIR)/basepack.lst
# depend on resources as well
all: $(BASEPACK_PATH)
# phony target for building resources
res: $(BASEPACK_PATH)
# prepares the basepack.lst
$(BASEPACK_LST): $(EXE)
@mkdir -p $(BUILD_DIR)/$(BASEDIR)
@touch $(BASEPACK_LST)
@echo "$(BUILD_DIR)/sound/bank_sets sound/bank_sets" >> $(BASEPACK_LST)
@echo "$(BUILD_DIR)/sound/sequences.bin sound/sequences.bin" >> $(BASEPACK_LST)
@echo "$(BUILD_DIR)/sound/sound_data.ctl sound/sound_data.ctl" >> $(BASEPACK_LST)
@echo "$(BUILD_DIR)/sound/sound_data.tbl sound/sound_data.tbl" >> $(BASEPACK_LST)
2020-06-07 21:00:57 +02:00
@$(foreach f, $(wildcard $(SKYTILE_DIR)/*), echo $(f) gfx/$(f:$(BUILD_DIR)/%=%) >> $(BASEPACK_LST);)
@find actors -name \*.png -exec echo "{} gfx/{}" >> $(BASEPACK_LST) \;
@find levels -name \*.png -exec echo "{} gfx/{}" >> $(BASEPACK_LST) \;
@find textures -name \*.png -exec echo "{} gfx/{}" >> $(BASEPACK_LST) \;
@find texts -name \*.json -exec echo "{} {}" >> $(BASEPACK_LST) \;
@find db -name \*.* -exec echo "{} {}" >> $(BASEPACK_LST) \;
ifneq ($(NO_COPY),1)
# prepares the resource ZIP with base data
$(BASEPACK_PATH): $(BASEPACK_LST)
2020-08-18 13:39:40 +02:00
@$(PYTHON) $(TOOLS_DIR)/mkzip.py $(BASEPACK_LST) $(BASEPACK_PATH) $(LEGACY_RES)
endif
2019-08-25 06:46:40 +02:00
clean:
$(RM) -r $(BUILD_DIR_BASE)
2020-05-07 20:21:22 +02:00
cleantools:
$(MAKE) -s -C tools clean
2019-08-25 06:46:40 +02:00
distclean:
$(RM) -r $(BUILD_DIR_BASE)
./extract_assets.py --clean
$(BUILD_DIR)/$(RPC_LIBS):
@$(CP) -f $(RPC_LIBS) $(BUILD_DIR)
2019-08-25 06:46:40 +02:00
libultra: $(BUILD_DIR)/libultra.a
2020-06-02 18:44:34 +02:00
$(BUILD_DIR)/asm/boot.o: $(IPL3_RAW_FILES)
$(BUILD_DIR)/src/game/crash_screen.o: $(CRASH_TEXTURE_C_FILES)
2019-08-25 06:46:40 +02:00
2020-06-02 18:44:34 +02:00
$(BUILD_DIR)/lib/rsp.o: $(BUILD_DIR)/rsp/rspboot.bin $(BUILD_DIR)/rsp/fast3d.bin $(BUILD_DIR)/rsp/audio.bin
2020-06-02 18:44:34 +02:00
RSP_DIRS := $(BUILD_DIR)/rsp
ALL_DIRS := $(BUILD_DIR) $(addprefix $(BUILD_DIR)/,$(SRC_DIRS) $(ASM_DIRS) $(GODDARD_SRC_DIRS) $(ULTRA_SRC_DIRS) $(ULTRA_ASM_DIRS) $(ULTRA_BIN_DIRS) $(BIN_DIRS) $(TEXTURE_DIRS) $(SOUND_SAMPLE_DIRS) $(addprefix levels/,$(LEVEL_DIRS)) include) $(MIO0_DIR) $(addprefix $(MIO0_DIR)/,$(VERSION)) $(SOUND_BIN_DIR) $(SOUND_BIN_DIR)/sequences/$(VERSION) $(RSP_DIRS) $(ADDONS_PATH)
2019-08-25 06:46:40 +02:00
# Make sure build directory exists before compiling anything
DUMMY != mkdir -p $(ALL_DIRS)
# compressed segment generation
# PC Area
2019-08-25 06:46:40 +02:00
$(BUILD_DIR)/%.table: %.aiff
$(AIFF_EXTRACT_CODEBOOK) $< >$@
$(BUILD_DIR)/%.aifc: $(BUILD_DIR)/%.table %.aiff
$(VADPCM_ENC) -c $^ $@
2020-06-02 18:44:34 +02:00
$(BUILD_DIR)/rsp/%.bin $(BUILD_DIR)/rsp/%_data.bin: rsp/%.s
$(RSPASM) -sym $@.sym -definelabel $(VERSION_DEF) 1 -definelabel $(GRUCODE_DEF) 1 -strequ CODE_FILE $(BUILD_DIR)/rsp/$*.bin -strequ DATA_FILE $(BUILD_DIR)/rsp/$*_data.bin $<
2019-12-02 03:52:53 +01:00
$(ENDIAN_BITWIDTH): tools/determine-endian-bitwidth.c
$(CC) -c $(CFLAGS) -o $@.dummy2 $< 2>$@.dummy1; true
grep -o 'msgbegin --endian .* --bitwidth .* msgend' $@.dummy1 > $@.dummy2
head -n1 <$@.dummy2 | cut -d' ' -f2-5 > $@
@rm $@.dummy1
@rm $@.dummy2
$(SOUND_BIN_DIR)/sound_data.ctl: sound/sound_banks/ $(SOUND_BANK_FILES) $(SOUND_SAMPLE_AIFCS) $(ENDIAN_BITWIDTH)
$(PYTHON) tools/assemble_sound.py $(BUILD_DIR)/sound/samples/ sound/sound_banks/ $(SOUND_BIN_DIR)/sound_data.ctl $(SOUND_BIN_DIR)/sound_data.tbl $(VERSION_CFLAGS) $$(cat $(ENDIAN_BITWIDTH))
2019-08-25 06:46:40 +02:00
$(SOUND_BIN_DIR)/sound_data.tbl: $(SOUND_BIN_DIR)/sound_data.ctl
2019-12-02 03:52:53 +01:00
@true
2019-08-25 06:46:40 +02:00
2019-12-02 03:52:53 +01:00
$(SOUND_BIN_DIR)/sequences.bin: $(SOUND_BANK_FILES) sound/sequences.json sound/sequences/ sound/sequences/$(VERSION)/ $(SOUND_SEQUENCE_FILES) $(ENDIAN_BITWIDTH)
$(PYTHON) tools/assemble_sound.py --sequences $@ $(SOUND_BIN_DIR)/bank_sets sound/sound_banks/ sound/sequences.json $(SOUND_SEQUENCE_FILES) $(VERSION_CFLAGS) $$(cat $(ENDIAN_BITWIDTH))
2019-09-01 21:50:50 +02:00
$(SOUND_BIN_DIR)/bank_sets: $(SOUND_BIN_DIR)/sequences.bin
2019-12-02 03:52:53 +01:00
@true
2019-08-25 06:46:40 +02:00
$(SOUND_BIN_DIR)/%.m64: $(SOUND_BIN_DIR)/%.o
$(OBJCOPY) -j .rodata $< -O binary $@
$(SOUND_BIN_DIR)/%.o: $(SOUND_BIN_DIR)/%.s
$(AS) $(ASFLAGS) -o $@ $<
2020-06-02 18:44:34 +02:00
$(SOUND_BIN_DIR)/%.inc.c: $(SOUND_BIN_DIR)/%
$(ZEROTERM) "$(patsubst $(BUILD_DIR)/%,%,$^)" | hexdump -v -e '1/1 "0x%X,"' > $@
2020-06-02 18:44:34 +02:00
$(SOUND_BIN_DIR)/sound_data.o: $(SOUND_BIN_DIR)/sound_data.ctl.inc.c $(SOUND_BIN_DIR)/sound_data.tbl.inc.c $(SOUND_BIN_DIR)/sequences.bin.inc.c $(SOUND_BIN_DIR)/bank_sets.inc.c
2019-12-02 03:52:53 +01:00
$(BUILD_DIR)/levels/scripts.o: $(BUILD_DIR)/include/level_headers.h
$(BUILD_DIR)/include/level_headers.h: levels/level_headers.h.in
$(CPP) -I . levels/level_headers.h.in | $(PYTHON) tools/output_level_headers.py > $(BUILD_DIR)/include/level_headers.h
2019-11-03 20:36:27 +01:00
$(BUILD_DIR)/assets/mario_anim_data.c: $(wildcard assets/anims/*.inc.c)
$(PYTHON) tools/mario_anims_converter.py > $@
$(BUILD_DIR)/assets/demo_data.c: assets/demo_data.json $(wildcard assets/demos/*.bin)
$(PYTHON) tools/demo_data_converter.py assets/demo_data.json $(VERSION_CFLAGS) > $@
2019-08-25 06:46:40 +02:00
# Source code
2020-02-03 06:51:26 +01:00
$(BUILD_DIR)/levels/%/leveldata.o: OPT_FLAGS := -g
$(BUILD_DIR)/actors/%.o: OPT_FLAGS := -g
$(BUILD_DIR)/bin/%.o: OPT_FLAGS := -g
2019-08-25 06:46:40 +02:00
$(BUILD_DIR)/src/goddard/%.o: OPT_FLAGS := -g
$(BUILD_DIR)/src/goddard/%.o: MIPSISET := -mips1
$(BUILD_DIR)/src/audio/%.o: OPT_FLAGS := -O2 -Wo,-loopunroll,0
$(BUILD_DIR)/src/audio/load.o: OPT_FLAGS := -O2 -framepointer -Wo,-loopunroll,0
$(BUILD_DIR)/lib/src/%.o: OPT_FLAGS :=
$(BUILD_DIR)/lib/src/math/ll%.o: MIPSISET := -mips3 -32
$(BUILD_DIR)/lib/src/math/%.o: OPT_FLAGS := -O2
$(BUILD_DIR)/lib/src/math/ll%.o: OPT_FLAGS :=
$(BUILD_DIR)/lib/src/ldiv.o: OPT_FLAGS := -O2
$(BUILD_DIR)/lib/src/string.o: OPT_FLAGS := -O2
$(BUILD_DIR)/lib/src/gu%.o: OPT_FLAGS := -O3
$(BUILD_DIR)/lib/src/al%.o: OPT_FLAGS := -O3
2020-03-02 04:42:52 +01:00
# The source-to-source optimizer copt is enabled for audio. This makes it use
# acpp, which needs -Wp,-+ to handle C++-style comments.
$(BUILD_DIR)/src/audio/effects.o: OPT_FLAGS := -O2 -Wo,-loopunroll,0 -sopt,-inline=sequence_channel_process_sound,-scalaroptimize=1 -Wp,-+
2020-04-03 20:57:26 +02:00
$(BUILD_DIR)/src/audio/synthesis.o: OPT_FLAGS := -O2 -sopt,-scalaroptimize=1 -Wp,-+
2020-06-02 18:44:34 +02:00
#$(BUILD_DIR)/src/audio/seqplayer.o: OPT_FLAGS := -O2 -sopt,-inline_manual,-scalaroptimize=1 -Wp,-+ #-Wo,-v,-bb,-l,seqplayer_list.txt
2020-03-02 04:42:52 +01:00
2019-12-02 03:52:53 +01:00
# Rebuild files with 'GLOBAL_ASM' if the NON_MATCHING flag changes.
$(GLOBAL_ASM_O_FILES): $(GLOBAL_ASM_DEP).$(NON_MATCHING)
$(GLOBAL_ASM_DEP).$(NON_MATCHING):
@rm -f $(GLOBAL_ASM_DEP).*
2019-08-25 06:46:40 +02:00
touch $@
2020-05-07 20:21:22 +02:00
$(BUILD_DIR)/%.o: %.cpp
@$(CXX) -fsyntax-only $(CFLAGS) $(CXXFLAGS) -MMD -MP -MT $@ -MF $(BUILD_DIR)/$*.d $<
$(CXX) -c $(CFLAGS) $(CXXFLAGS) -o $@ $<
2020-05-07 20:21:22 +02:00
2019-08-25 06:46:40 +02:00
$(BUILD_DIR)/%.o: %.c
2020-06-02 18:44:34 +02:00
@$(CC_CHECK) $(CC_CHECK_CFLAGS) -MMD -MP -MT $@ -MF $(BUILD_DIR)/$*.d $<
2019-08-25 06:46:40 +02:00
$(CC) -c $(CFLAGS) -o $@ $<
2019-11-03 20:36:27 +01:00
$(BUILD_DIR)/%.o: $(BUILD_DIR)/%.c
2020-06-02 18:44:34 +02:00
@$(CC_CHECK) $(CC_CHECK_CFLAGS) -MMD -MP -MT $@ -MF $(BUILD_DIR)/$*.d $<
2019-11-03 20:36:27 +01:00
$(CC) -c $(CFLAGS) -o $@ $<
$(BUILD_DIR)/%.o: %.s
2019-08-25 06:46:40 +02:00
$(AS) $(ASFLAGS) -MD $(BUILD_DIR)/$*.d -o $@ $<
$(EXE): $(O_FILES) $(MIO0_FILES:.mio0=.o) $(SOUND_OBJ_FILES) $(ULTRA_O_FILES) $(GODDARD_O_FILES) $(BUILD_DIR)/$(RPC_LIBS)
$(LD) -L $(BUILD_DIR) -o $@ $(O_FILES) $(SOUND_OBJ_FILES) $(ULTRA_O_FILES) $(GODDARD_O_FILES) $(LDFLAGS)
2019-08-25 06:46:40 +02:00
ifeq ($(TARGET_SWITCH), 1)
# add `--icon=$(APP_ICON)` to this when we get a suitable icon
%.nro: %.stripped %.nacp
@elf2nro $< $@ --nacp=$*.nacp --icon=$(APP_ICON)
@echo built ... $(notdir $@)
@echo $(APP_ICON)
%.nacp:
@nacptool --create "$(APP_TITLE)" "$(APP_AUTHOR)" "$(APP_VERSION)" $@ $(NACPFLAGS)
@echo built ... $(notdir $@)
%.stripped: %
@$(STRIP) -o $@ $<
@echo stripped ... $(notdir $<)
endif
testclean:
@rm -rf $(BUILD_DIR)/$(SRC_DIRS)
.PHONY: all clean distclean default diff libultra res
2019-12-02 03:52:53 +01:00
.PRECIOUS: $(BUILD_DIR)/bin/%.elf $(SOUND_BIN_DIR)/%.ctl $(SOUND_BIN_DIR)/%.tbl $(SOUND_SAMPLE_TABLES) $(SOUND_BIN_DIR)/%.s $(BUILD_DIR)/%
2019-08-25 06:46:40 +02:00
.DELETE_ON_ERROR:
# Remove built-in rules, to improve performance
MAKEFLAGS += --no-builtin-rules
-include $(DEP_FILES)
print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true