summaryrefslogtreecommitdiff
path: root/Makefile.common
blob: 79ae14564b2f6461b382fc1c6f031ccc4b985e37 (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
INCFLAGS   := -I$(CORE_DIR)/libretro -I$(CORE_DIR)/src

SOURCES_ASM := $(CORE_DIR)/bios_data.S

SOURCES_C := $(CORE_DIR)/main.c \
				 $(CORE_DIR)/cpu.c \
				 $(CORE_DIR)/gba_memory.c \
				 $(CORE_DIR)/video.c \
				 $(CORE_DIR)/input.c \
				 $(CORE_DIR)/sound.c \
				 $(CORE_DIR)/cheats.c \
				 $(CORE_DIR)/libretro.c \
				 $(CORE_DIR)/gba_cc_lut.c

ifeq ($(HAVE_DYNAREC), 1)
SOURCES_C += $(CORE_DIR)/cpu_threaded.c
endif

ifeq ($(HAVE_DYNAREC), 1)

ifeq ($(CPU_ARCH), x86_32)
SOURCES_ASM += $(CORE_DIR)/x86/x86_stub.S
endif
ifeq ($(CPU_ARCH), arm)
SOURCES_ASM += $(CORE_DIR)/arm/arm_stub.S
endif
ifeq ($(CPU_ARCH), mips)
SOURCES_ASM += $(CORE_DIR)/psp/mips_stub.S
endif
endif

ifeq ($(CPU_ARCH), arm)

ifeq ($(CPU_ARCH_ARM_BLENDING_OPTS),1)
CFLAGS += -DARM_ARCH_BLENDING_OPTS
SOURCES_ASM += $(CORE_DIR)/arm/video_blend.S
endif

endif

ifeq ($(HAVE_MMAP_WIN32),1)
SOURCES_C += $(CORE_DIR)/memmap_win32.c
endif

INCFLAGS := -I$(CORE_DIR)