-
Notifications
You must be signed in to change notification settings - Fork 0
/
obj_files.mk
40 lines (27 loc) · 1.15 KB
/
obj_files.mk
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
# Linker order for every file, passed to the Metrowerks linker.
INIT_O_FILES := \
$(BUILD_DIR)/asm/init.o
EXTAB_O_FILES := \
$(BUILD_DIR)/asm/extab.o
EXTABINDEX_O_FILES := \
$(BUILD_DIR)/asm/extabindex.o
TEXT_O_FILES := \
$(BUILD_DIR)/asm/text.o \
CTORS_O_FILES := \
$(BUILD_DIR)/asm/ctors.o
DTORS_O_FILES := \
$(BUILD_DIR)/asm/dtors.o
RODATA_O_FILES := \
$(BUILD_DIR)/asm/rodata.o
DATA_O_FILES := \
$(BUILD_DIR)/asm/data.o \
BSS_O_FILES := \
$(BUILD_DIR)/asm/bss.o
SDATA_O_FILES := \
$(BUILD_DIR)/asm/sdata.o
SBSS_O_FILES := \
$(BUILD_DIR)/asm/sbss.o
SDATA2_O_FILES := \
$(BUILD_DIR)/asm/sdata2.o
SBSS2_O_FILES := \
$(BUILD_DIR)/asm/sbss2.o