git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

libretro/Makefile.common

      1 include $(CORE_DIR)/version.mk
      2 
      3 INCFLAGS    := -I$(CORE_DIR)
      4 
      5 SOURCES_C   := $(CORE_DIR)/Core/gb.c \
      6                $(CORE_DIR)/Core/sgb.c \
      7                $(CORE_DIR)/Core/apu.c \
      8                $(CORE_DIR)/Core/memory.c \
      9                $(CORE_DIR)/Core/mbc.c \
     10                $(CORE_DIR)/Core/timing.c \
     11                $(CORE_DIR)/Core/display.c \
     12                $(CORE_DIR)/Core/camera.c \
     13                $(CORE_DIR)/Core/sm83_cpu.c \
     14                $(CORE_DIR)/Core/joypad.c \
     15                $(CORE_DIR)/Core/save_state.c \
     16                $(CORE_DIR)/Core/random.c \
     17                $(CORE_DIR)/Core/rumble.c \
     18                $(CORE_DIR)/libretro/agb_boot.c \
     19                $(CORE_DIR)/libretro/cgb_boot.c \
     20                $(CORE_DIR)/libretro/cgb0_boot.c \
     21                $(CORE_DIR)/libretro/mgb_boot.c \
     22                $(CORE_DIR)/libretro/dmg_boot.c \
     23                $(CORE_DIR)/libretro/sgb_boot.c \
     24                $(CORE_DIR)/libretro/sgb2_boot.c \
     25                $(CORE_DIR)/libretro/libretro.c
     26 
     27 CFLAGS += -DGB_DISABLE_TIMEKEEPING -DGB_DISABLE_REWIND -DGB_DISABLE_DEBUGGER -DGB_DISABLE_CHEATS
     28 
     29 
     30 SOURCES_CXX :=	

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.