-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.plat
More file actions
185 lines (146 loc) · 3.72 KB
/
Makefile.plat
File metadata and controls
185 lines (146 loc) · 3.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileContributor: Antonio Niño Díaz, 2023-2026
BLOCKSDS ?= /opt/blocksds/core
BLOCKSDSEXT ?= /opt/blocksds/external
WONDERFUL_TOOLCHAIN ?= /opt/wonderful
ARM_NONE_EABI_PATH ?= $(WONDERFUL_TOOLCHAIN)/toolchain/gcc-arm-none-eabi/bin/
# Source code paths
# -----------------
ifeq ($(SYSTEM),GBA)
SOURCEDIRS := source/core source/gba
OPTFLAGS := -O2
endif
ifeq ($(SYSTEM),DS7)
SOURCEDIRS := source/core source/ds/common source/ds/arm7
OPTFLAGS := -Os
endif
ifeq ($(SYSTEM),DS9)
SOURCEDIRS := source/ds/common source/ds/arm9
OPTFLAGS := -Os
endif
INCLUDEDIRS := include source
# Build artifacts
# ---------------
ifeq ($(SYSTEM),GBA)
NAME := libmm
BUILDDIR := build/gba
endif
ifeq ($(SYSTEM),DS7)
NAME := libmm7
BUILDDIR := build/ds7
endif
ifeq ($(SYSTEM),DS9)
NAME := libmm9
BUILDDIR := build/ds9
endif
ifeq ($(DEBUG),1)
NAME := $(NAME)d
BUILDDIR := $(BUILDDIR)/debug
else
BUILDDIR := $(BUILDDIR)/release
endif
ARCHIVE := lib/$(NAME).a
# Tools
# -----
PREFIX := $(ARM_NONE_EABI_PATH)arm-none-eabi-
CC := $(PREFIX)gcc
CXX := $(PREFIX)g++
AR := $(PREFIX)ar
MKDIR := mkdir
RM := rm -rf
# Verbose flag
# ------------
ifeq ($(VERBOSE),1)
V :=
else
V := @
endif
# Defines passed to all files
# ---------------------------
ifneq ($(DEBUG),1)
DEFINES := -DNDEBUG
endif
# Libraries
# ---------
ifeq ($(SYSTEM),GBA)
LIBDIRS :=
endif
ifeq ($(SYSTEM),DS7)
LIBDIRS := $(BLOCKSDS)/libs/libnds
endif
ifeq ($(SYSTEM),DS9)
LIBDIRS := $(BLOCKSDS)/libs/libnds
endif
# Source files
# ------------
SOURCES_S := $(shell find -L $(SOURCEDIRS) -name "*.s")
SOURCES_C := $(shell find -L $(SOURCEDIRS) -name "*.c")
SOURCES_CPP := $(shell find -L $(SOURCEDIRS) -name "*.cpp")
# Compiler and linker flags
# -------------------------
ifeq ($(SYSTEM),GBA)
DEFINES += -D__GBA__
ARCH := -mcpu=arm7tdmi -mtune=arm7tdmi
# Use debug symbols that no$gba can understand
ASFLAGS += -gdwarf-4
CFLAGS += -gdwarf-4
CXXFLAGS += -gdwarf-4
endif
ifeq ($(SYSTEM),DS7)
DEFINES := -D__NDS__ -DARM7
ARCH := -mcpu=arm7tdmi
endif
ifeq ($(SYSTEM),DS9)
DEFINES += -D__NDS__ -DARM9
ARCH := -mcpu=arm946e-s+nofp
endif
WARNFLAGS := -Wall -Wextra -Wshadow -Wstrict-prototypes
INCLUDEFLAGS := $(foreach path,$(INCLUDEDIRS),-I$(path)) \
$(foreach path,$(LIBDIRS),-I$(path)/include)
ASFLAGS += -g -x assembler-with-cpp $(DEFINES) $(ARCH) \
-mthumb -mthumb-interwork $(INCLUDEFLAGS) \
-ffunction-sections -fdata-sections
CFLAGS += -g -std=gnu23 $(WARNFLAGS) $(DEFINES) $(ARCH) \
-mthumb -mthumb-interwork $(INCLUDEFLAGS) $(OPTFLAGS) \
-ffunction-sections -fdata-sections \
-fomit-frame-pointer
CXXFLAGS += -g -std=gnu++23 $(WARNFLAGS) $(DEFINES) $(ARCH) \
-mthumb -mthumb-interwork $(INCLUDEFLAGS) $(OPTFLAGS) \
-ffunction-sections -fdata-sections \
-fno-exceptions -fno-rtti \
-fomit-frame-pointer
# Intermediate build files
# ------------------------
OBJS := $(addsuffix .o,$(addprefix $(BUILDDIR)/,$(SOURCES_S))) \
$(addsuffix .o,$(addprefix $(BUILDDIR)/,$(SOURCES_C))) \
$(addsuffix .o,$(addprefix $(BUILDDIR)/,$(SOURCES_CPP)))
DEPS := $(OBJS:.o=.d)
# Targets
# -------
.PHONY: all clean
all: $(ARCHIVE)
$(ARCHIVE): $(OBJS)
@echo " AR $@"
@$(MKDIR) -p $(@D)
$(V)$(AR) rcs $@ $(OBJS)
clean:
@echo " CLEAN"
$(V)$(RM) $(ARCHIVE) $(BUILDDIR)
# Rules
# -----
$(BUILDDIR)/%.s.o : %.s
@echo " AS $<"
@$(MKDIR) -p $(@D)
$(V)$(CC) $(ASFLAGS) -MMD -MP -c -o $@ $<
$(BUILDDIR)/%.c.o : %.c
@echo " CC $<"
@$(MKDIR) -p $(@D)
$(V)$(CC) $(CFLAGS) -MMD -MP -c -o $@ $<
$(BUILDDIR)/%.cpp.o : %.cpp
@echo " CXX $<"
@$(MKDIR) -p $(@D)
$(V)$(CXX) $(CXXFLAGS) -MMD -MP -c -o $@ $<
# Include dependency files if they exist
# --------------------------------------
-include $(DEPS)