Add HAVE_DYNAREC and -DARCH_ARM optionally to CFLAGS

This commit is contained in:
twinaphex 2014-12-10 20:31:56 +01:00
parent e33a56cd83
commit a9ce972736
1 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,13 @@ CORE_DIR := ..
SOURCES_C := SOURCES_C :=
SOURCES_ASM := SOURCES_ASM :=
ifeq ($(HAVE_DYNAREC),1)
LOCAL_CFLAGS += -DHAVE_DYNAREC
endif
ifeq ($(CPU_ARCH),arm)
LOCAL_CFLAGS += -DARM_ARCH
endif
include $(CORE_DIR)/Makefile.common include $(CORE_DIR)/Makefile.common