summaryrefslogtreecommitdiff
path: root/obj_files.mk
diff options
context:
space:
mode:
Diffstat (limited to 'obj_files.mk')
-rw-r--r--obj_files.mk8
1 files changed, 5 insertions, 3 deletions
diff --git a/obj_files.mk b/obj_files.mk
index 435ac6f..e20b308 100644
--- a/obj_files.mk
+++ b/obj_files.mk
@@ -1,12 +1,11 @@
-INIT_O_FILES := \
- $(BUILD_DIR)/asm/init.o
-
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 \
@@ -14,6 +13,9 @@ TEXT_O_FILES := \
$(BUILD_DIR)/asm/text_4.o \
$(BUILD_DIR)/asm/text_5.o \
$(BUILD_DIR)/asm/text_6.o \
+ $(BUILD_DIR)/asm/libstdc++/__mem.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 \