mirror of
https://github.com/libretro/Mu.git
synced 2026-04-29 01:23:55 +00:00
15 lines
342 B
Makefile
15 lines
342 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
|
|
|
|
include $(EMU_PATH)/makefile.all
|
|
|
|
SOURCES_C := $(CORE_DIR)/libretro.c \
|
|
$(EMU_SOURCES_C)
|