gpsp/Makefile.common

30 lines
649 B
Makefile
Raw Normal View History

2014-12-09 22:25:29 +01:00
INCFLAGS := -I$(CORE_DIR)/libretro -I$(CORE_DIR)/src
2014-12-09 22:37:07 +01:00
SOURCES_ASM :=
2014-12-09 22:25:29 +01:00
ifeq ($(HAVE_GRIFFIN), 1)
SOURCES_C := $(CORE_DIR)/gpsp_griffin.c
else
SOURCES_C := $(CORE_DIR)/main.c \
$(CORE_DIR)/cpu.c \
$(CORE_DIR)/memory.c \
$(CORE_DIR)/video.c \
$(CORE_DIR)/input.c \
$(CORE_DIR)/sound.c \
$(CORE_DIR)/cpu_threaded.c \
$(CORE_DIR)/cheats.c \
$(CORE_DIR)/libretro.c \
$(CORE_DIR)/libco/libco.c
endif
2014-12-09 22:37:07 +01:00
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 \
2014-12-09 22:48:03 +01:00
$(CORE_DIR)/arm/video_blend.S
2014-12-09 22:37:07 +01:00
endif
2014-12-09 22:25:29 +01:00
INCFLAGS := -I$(CORE_DIR)