summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authortwinaphex2014-12-10 17:06:09 +0100
committertwinaphex2014-12-10 17:06:09 +0100
commit51d78afa091d296e5545e69ed11201ee436053a1 (patch)
treede64f89c9c353493b471db18f32d10b89ba6733f /Makefile.common
parent512f7f5b275ec011ff0bf406771fcbeada1caf29 (diff)
downloadpicogpsp-51d78afa091d296e5545e69ed11201ee436053a1.tar.gz
picogpsp-51d78afa091d296e5545e69ed11201ee436053a1.tar.bz2
picogpsp-51d78afa091d296e5545e69ed11201ee436053a1.zip
Add HAVE_DYNAREC ifdef
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index aef6d23..b1790da 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -18,6 +18,8 @@ SOURCES_C := $(CORE_DIR)/main.c \
endif
+ifeq ($(HAVE_DYNAREC), 1)
+
ifeq ($(CPU_ARCH), x86_32)
SOURCES_ASM += $(CORE_DIR)/x86/x86_stub.S
endif
@@ -27,4 +29,6 @@ SOURCES_ASM += $(CORE_DIR)/arm/arm_stub.S \
$(CORE_DIR)/arm/video_blend.S
endif
+endif
+
INCFLAGS := -I$(CORE_DIR)