mirror of
https://github.com/libretro/Mu.git
synced 2026-08-01 05:20:33 +00:00
21 lines
479 B
Makefile
21 lines
479 B
Makefile
EMU_PATH := $(CORE_DIR)/../src
|
|
LIBRETRO_COMM_DIR := $(CORE_DIR)/libretro-common
|
|
COREDEFINES =
|
|
|
|
INCFLAGS := -I$(LIBRETRO_COMM_DIR)/include
|
|
|
|
ifneq (,$(findstring msvc2003,$(platform)))
|
|
INCFLAGS += -I$(LIBRETRO_COMM_DIR)/include/compat/msvc
|
|
endif
|
|
|
|
ifneq (,$(findstring msvc,$(platform)))
|
|
COREDEFINES += -DINLINE="static _inline"
|
|
else
|
|
COREDEFINES += -DINLINE="static inline"
|
|
endif
|
|
|
|
include $(EMU_PATH)/makefile.all
|
|
|
|
SOURCES_C := $(CORE_DIR)/libretro.c \
|
|
$(EMU_SOURCES)
|