blob: 0f276191978d048039148875fea0759e54b01639 (
plain)
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
|
EXTAB_O_FILES := \
$(BUILD_DIR)/asm/extab.o
EXTABINDEX_O_FILES := \
$(BUILD_DIR)/asm/extabindex.o
#init is included here so that linking is in the right order
#todo fix with makefile implementation
TEXT_O_FILES := \
$(BUILD_DIR)/asm/text_1.o \
$(BUILD_DIR)/asm/text_2.o \
$(BUILD_DIR)/asm/text_3.o \
$(BUILD_DIR)/asm/text_4.o \
$(BUILD_DIR)/asm/text_5.o \
$(BUILD_DIR)/asm/libstdc++/__mem.o \
$(BUILD_DIR)/asm/libstdc++/__va_arg.o \
$(BUILD_DIR)/asm/libstdc++/global_destructor_chain.o \
$(BUILD_DIR)/asm/libstdc++/NMWException.o \
$(BUILD_DIR)/src/libstdc++/ptmf.o \
$(BUILD_DIR)/asm/text_5_2.o \
$(BUILD_DIR)/asm/libstdc++/__init_cpp_exceptions.o \
$(BUILD_DIR)/asm/text_5_3.o \
$(BUILD_DIR)/asm/text_6.o \
$(BUILD_DIR)/asm/MetroTRK/mem_TRK.o \
$(BUILD_DIR)/asm/init.o \
$(BUILD_DIR)/asm/text_6_2.o \
$(BUILD_DIR)/asm/text_7.o \
$(BUILD_DIR)/asm/SDK/OS/OS.o \
$(BUILD_DIR)/asm/SDK/OS/OSAlarm.o \
$(BUILD_DIR)/src/SDK/OS/OSAlloc.o \
$(BUILD_DIR)/asm/SDK/OS/OSArena.o \
$(BUILD_DIR)/asm/SDK/OS/OSAudioSystem.o \
$(BUILD_DIR)/asm/SDK/OS/OSCache.o \
$(BUILD_DIR)/asm/SDK/OS/OSContext.o \
$(BUILD_DIR)/asm/SDK/OS/OSError.o \
$(BUILD_DIR)/asm/SDK/OS/OSExec.o \
$(BUILD_DIR)/asm/text_7_2.o \
$(BUILD_DIR)/asm/text_8.o \
$(BUILD_DIR)/asm/text_9.o \
$(BUILD_DIR)/asm/text_10.o \
$(BUILD_DIR)/src/darray.o \
$(BUILD_DIR)/src/hashtable.o \
$(BUILD_DIR)/asm/md5c.o \
$(BUILD_DIR)/asm/nonport.o \
$(BUILD_DIR)/asm/gsAvailable.o \
$(BUILD_DIR)/asm/gsCrypt.o \
$(BUILD_DIR)/asm/gsLargeInt.o \
$(BUILD_DIR)/asm/gsRC4.o \
$(BUILD_DIR)/asm/gsSHA1.o \
$(BUILD_DIR)/asm/gsXML.o \
$(BUILD_DIR)/asm/gp.o \
$(BUILD_DIR)/asm/gpi.o \
$(BUILD_DIR)/asm/gpiBuddy.o \
$(BUILD_DIR)/asm/gpiBuffer.o \
$(BUILD_DIR)/asm/gpiCallback.o \
$(BUILD_DIR)/asm/gpiConnect.o \
$(BUILD_DIR)/asm/gpiInfo.o \
$(BUILD_DIR)/asm/gpiOperation.o \
$(BUILD_DIR)/asm/gpiPeer.o \
$(BUILD_DIR)/asm/gpiProfile.o \
$(BUILD_DIR)/asm/gpiSearch.o \
$(BUILD_DIR)/asm/gpiTransfer.o \
$(BUILD_DIR)/asm/gpiUnique.o \
$(BUILD_DIR)/asm/gpiUtility.o \
$(BUILD_DIR)/asm/gt2Auth.o \
$(BUILD_DIR)/asm/gt2Buffer.o \
$(BUILD_DIR)/asm/gt2Callback.o \
$(BUILD_DIR)/asm/gt2Connection.o \
$(BUILD_DIR)/asm/gt2Main.o \
$(BUILD_DIR)/asm/gt2Message.o \
$(BUILD_DIR)/asm/gt2Socket.o \
$(BUILD_DIR)/asm/gt2Utility.o \
$(BUILD_DIR)/asm/qr2.o \
$(BUILD_DIR)/asm/qr2regkeys.o \
$(BUILD_DIR)/asm/ghttpBuffer.o \
$(BUILD_DIR)/asm/ghttpCallbacks.o \
$(BUILD_DIR)/asm/ghttpCommon.o \
$(BUILD_DIR)/asm/ghttpConnection.o \
$(BUILD_DIR)/asm/ghttpEncryption.o \
$(BUILD_DIR)/asm/ghttpMain.o \
$(BUILD_DIR)/asm/ghttpPost.o \
$(BUILD_DIR)/asm/ghttpProcess.o \
$(BUILD_DIR)/asm/gbucket.o \
$(BUILD_DIR)/asm/gstats.o \
$(BUILD_DIR)/asm/NATify.o \
$(BUILD_DIR)/asm/natneg.o \
$(BUILD_DIR)/asm/sb_crypt.o \
$(BUILD_DIR)/asm/sb_queryengine.o \
$(BUILD_DIR)/asm/text_10_2.o \
$(BUILD_DIR)/asm/text_11.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
|