100 lines
2.8 KiB
Makefile
100 lines
2.8 KiB
Makefile
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
|
include $(SELF_DIR)ExportPath.mk
|
|
|
|
#Build architecture/variant string, possible values: x86, armv7le, etc...
|
|
PLATFORM ?= PSX
|
|
|
|
#Build profile, possible values: release, debug, profile, coverage
|
|
BUILD_DIR ?= bin
|
|
BUILD_PROFILE ?= debug
|
|
TV_FORMAT ?= PAL
|
|
|
|
CONFIG_NAME ?= $(PLATFORM)-$(BUILD_PROFILE)
|
|
OUTPUT_DIR = $(BUILD_DIR)/$(CONFIG_NAME)
|
|
TARGET = $(OUTPUT_DIR)/$(ARTIFACT)
|
|
|
|
#Compiler definitions
|
|
HAS_LINUX_MIPS_GCC = $(shell which mipsel-linux-gnu-gcc-10 > /dev/null 2> /dev/null && echo true || echo false)
|
|
ifeq ($(HAS_LINUX_MIPS_GCC),true)
|
|
PREFIX ?= mipsel-linux-gnu
|
|
FORMAT ?= elf32-tradlittlemips
|
|
else
|
|
PREFIX ?= mipsel-none-elf
|
|
FORMAT ?= elf32-littlemips
|
|
endif
|
|
|
|
#Take this to PSEXETarget.mk??
|
|
#LDSCRIPT ?= $(PSCX_REDUX_DIR)/ps-exe.ld
|
|
#ifneq ($(strip $(OVERLAYSCRIPT)),)
|
|
#LDSCRIPT := $(addprefix $(OVERLAYSCRIPT) , -T$(LDSCRIPT))
|
|
#else
|
|
#LDSCRIPT := $(addprefix $(PSCX_REDUX_DIR)/default.ld , -T$(LDSCRIPT))
|
|
#endif
|
|
|
|
CC = $(PREFIX)-gcc-10
|
|
CXX = $(PREFIX)-g++-10
|
|
LD = $(CXX)
|
|
AR = ar
|
|
|
|
#architecture flags
|
|
ARCHFLAGS = -march=mips1 -mabi=32 -EL -fno-pic -mno-shared -nostdinc -nostdinc++ -mno-abicalls -mfp32
|
|
ARCHFLAGS += -fno-stack-protector -nostdlib -ffreestanding
|
|
|
|
#Compiler flags for build profiles
|
|
CCFLAGS_release += -O3
|
|
CCFLAGS_debug += -O0
|
|
|
|
CXXFLAGS += -fno-exceptions -fno-rtti
|
|
|
|
USE_FUNCTION_SECTIONS ?= true
|
|
ifeq ($(USE_FUNCTION_SECTIONS),true)
|
|
CCFLAGS += -ffunction-sections
|
|
endif
|
|
CCFLAGS += -mno-gpopt -fomit-frame-pointer
|
|
CCFLAGS += -fno-builtin -fno-strict-aliasing -Wno-attributes
|
|
CCFLAGS += -std=c++20
|
|
CCFLAGS += $(ARCHFLAGS)
|
|
|
|
CCFLAGS += $(CCFLAGS_$(BUILD_PROFILE))
|
|
CCFLAGS += $(INCLUDES)
|
|
CCFLAGS += -DJABYENGINE_$(TV_FORMAT)
|
|
|
|
#Linker flags
|
|
LDFLAGS_release += -Os
|
|
|
|
LDFLAGS_all += -Wl,-Map=$(TARGET).map -nostdlib -T$(AUTO_OVERLAY_DIR)/Overlays.ld -T$(JABY_ENGINE_DIR)/lib/psexe.ld -static -Wl,--gc-sections -Wl,--build-id=none -Wl,--no-check-sections
|
|
LDFLAGS_all += $(ARCHFLAGS) -Wl,--oformat=$(FORMAT)
|
|
LDFLAGS_all += $(LDFLAGS_$(BUILD_PROFILE))
|
|
|
|
LIBS_all += $(LIBS_$(BUILD_PROFILE))
|
|
|
|
DEPS = -Wp,-MMD,$(@:%.o=%.d),-MT,$@
|
|
|
|
#Object files list
|
|
OBJS = $(addprefix $(OUTPUT_DIR)/,$(addsuffix .o, $(subst ..,!super,$(basename $(SRCS)))))
|
|
|
|
#Compiling rule
|
|
$(OUTPUT_DIR)/%.o: %.s
|
|
@mkdir -p $(dir $@)
|
|
$(CC) -c $(DEPS) -o $@ $(CCFLAGS) $(CCFLAGS) $<
|
|
|
|
$(OUTPUT_DIR)/%.o: %.c
|
|
@mkdir -p $(dir $@)
|
|
$(CC) -c $(DEPS) -o $@ $(CCFLAGS) $(CCFLAGS) $<
|
|
|
|
$(OUTPUT_DIR)/%.o: %.cpp
|
|
@mkdir -p $(dir $@)
|
|
$(CXX) -c $(DEPS) -o $@ $(CCFLAGS) $(CXXFLAGS) $<
|
|
|
|
.SECONDEXPANSION:
|
|
$(OUTPUT_DIR)/%.o: $$(subst !super,..,%.s)
|
|
@mkdir -p $(dir $@)
|
|
$(CC) $(ARCHFLAGS) -I$(PCSX_REDUX) -g -c -o $@ $<
|
|
|
|
#Rules section for default compilation and linking
|
|
rebuild:
|
|
$(MAKE) clean
|
|
$(MAKE) all
|
|
|
|
#Inclusion of dependencies (object files to source and includes)
|
|
-include $(OBJS:%.o=%.d) |