summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authortwinaphex2015-11-08 04:30:57 +0100
committertwinaphex2015-11-08 04:30:57 +0100
commitb5020d0568e1ce401eb242dbc2e711886c8b0ad2 (patch)
tree82fdecba69f6f799c790b2e3ec46ee38ba81ca85 /Makefile.common
parent23970bfe8a39d3059352b2b9cdc1792842788f8a (diff)
downloadsnes9x2002-b5020d0568e1ce401eb242dbc2e711886c8b0ad2.tar.gz
snes9x2002-b5020d0568e1ce401eb242dbc2e711886c8b0ad2.tar.bz2
snes9x2002-b5020d0568e1ce401eb242dbc2e711886c8b0ad2.zip
Add tile_c.cpp for non-ARM_ASM build
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common17
1 files changed, 10 insertions, 7 deletions
diff --git a/Makefile.common b/Makefile.common
index c285ba9..39be4bf 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -32,13 +32,6 @@ SOURCES += $(CORE_DIR)/snapshot.cpp
SOURCES += $(CORE_DIR)/soundux.cpp
SOURCES += $(CORE_DIR)/spc700.cpp
SOURCES += $(CORE_DIR)/srtc.cpp
-SOURCES += $(CORE_DIR)/tile16.cpp
-SOURCES += $(CORE_DIR)/tile16add.cpp
-SOURCES += $(CORE_DIR)/tile16add1_2.cpp
-SOURCES += $(CORE_DIR)/tile16fadd1_2.cpp
-SOURCES += $(CORE_DIR)/tile16sub.cpp
-SOURCES += $(CORE_DIR)/tile16sub1_2.cpp
-SOURCES += $(CORE_DIR)/tile16fsub1_2.cpp
SOURCES += $(CORE_DIR)/mode7new.cpp
SOURCES += $(CORE_DIR)/mode7.cpp
SOURCES += $(CORE_DIR)/mode7add.cpp
@@ -58,6 +51,16 @@ SOURCES += $(LIBRETRO_DIR)/memstream.c
ifeq ($(ARM_ASM), 1)
SOURCES += $(CORE_DIR)/spc700a.s \
$(CORE_DIR)/spc_decode.S
+
+SOURCES += $(CORE_DIR)/tile16.cpp
+SOURCES += $(CORE_DIR)/tile16add.cpp
+SOURCES += $(CORE_DIR)/tile16add1_2.cpp
+SOURCES += $(CORE_DIR)/tile16fadd1_2.cpp
+SOURCES += $(CORE_DIR)/tile16sub.cpp
+SOURCES += $(CORE_DIR)/tile16sub1_2.cpp
+SOURCES += $(CORE_DIR)/tile16fsub1_2.cpp
+else
+SOURCES += $(CORE_DIR)/tile_c.cpp
endif
SOURCES += $(CORE_DIR)/os9x_65c816_global.s