23 lines
785 B
Makefile
23 lines
785 B
Makefile
INCFLAGS := -I$(CORE_DIR)
|
|
|
|
SOURCES_C := $(CORE_DIR)/Core/gb.c \
|
|
$(CORE_DIR)/Core/apu.c \
|
|
$(CORE_DIR)/Core/memory.c \
|
|
$(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 \
|
|
$(CORE_DIR)/Core/z80_cpu.c \
|
|
$(CORE_DIR)/Core/joypad.c \
|
|
$(CORE_DIR)/Core/save_state.c \
|
|
$(CORE_DIR)/libretro/agb_boot.c \
|
|
$(CORE_DIR)/libretro/cgb_boot.c \
|
|
$(CORE_DIR)/libretro/dmg_boot.c \
|
|
$(CORE_DIR)/libretro/libretro.c
|
|
|
|
CFLAGS += -DDISABLE_TIMEKEEPING -DDISABLE_REWIND -DDISABLE_DEBUGGER
|
|
|
|
|
|
SOURCES_CXX :=
|