2020-10-10 23:33:10 +00:00
|
|
|
include $(CORE_DIR)/version.mk
|
2020-10-10 03:52:22 +00:00
|
|
|
|
2017-10-13 00:02:02 +03:00
|
|
|
INCFLAGS := -I$(CORE_DIR)
|
2017-05-04 03:22:28 +02:00
|
|
|
|
|
|
|
SOURCES_C := $(CORE_DIR)/Core/gb.c \
|
2019-01-05 20:58:23 -05:00
|
|
|
$(CORE_DIR)/Core/sgb.c \
|
2017-10-12 19:05:27 +03:00
|
|
|
$(CORE_DIR)/Core/apu.c \
|
2017-10-12 19:42:30 +03:00
|
|
|
$(CORE_DIR)/Core/memory.c \
|
2017-10-12 19:05:27 +03:00
|
|
|
$(CORE_DIR)/Core/mbc.c \
|
|
|
|
$(CORE_DIR)/Core/timing.c \
|
|
|
|
$(CORE_DIR)/Core/display.c \
|
|
|
|
$(CORE_DIR)/Core/symbol_hash.c \
|
|
|
|
$(CORE_DIR)/Core/camera.c \
|
2019-01-12 00:42:16 +02:00
|
|
|
$(CORE_DIR)/Core/sm83_cpu.c \
|
2017-10-12 19:05:27 +03:00
|
|
|
$(CORE_DIR)/Core/joypad.c \
|
2017-10-09 12:03:51 -05:00
|
|
|
$(CORE_DIR)/Core/save_state.c \
|
2019-06-15 23:22:27 +03:00
|
|
|
$(CORE_DIR)/Core/random.c \
|
2020-04-29 16:58:38 +03:00
|
|
|
$(CORE_DIR)/Core/rumble.c \
|
2018-01-20 00:06:33 +02:00
|
|
|
$(CORE_DIR)/libretro/agb_boot.c \
|
2017-10-12 21:52:51 +03:00
|
|
|
$(CORE_DIR)/libretro/cgb_boot.c \
|
2018-01-20 00:06:33 +02:00
|
|
|
$(CORE_DIR)/libretro/dmg_boot.c \
|
2019-01-05 20:58:23 -05:00
|
|
|
$(CORE_DIR)/libretro/sgb_boot.c \
|
|
|
|
$(CORE_DIR)/libretro/sgb2_boot.c \
|
2017-10-12 19:05:27 +03:00
|
|
|
$(CORE_DIR)/libretro/libretro.c
|
2017-05-04 03:22:28 +02:00
|
|
|
|
2020-04-25 15:12:10 +03:00
|
|
|
CFLAGS += -DGB_DISABLE_TIMEKEEPING -DGB_DISABLE_REWIND -DGB_DISABLE_DEBUGGER -DGB_DISABLE_CHEATS
|
2017-10-12 19:42:30 +03:00
|
|
|
|
2017-05-04 03:36:34 +02:00
|
|
|
|
2017-10-12 19:05:27 +03:00
|
|
|
SOURCES_CXX :=
|