File: Makefile.common

package info (click to toggle)
sameboy 1.0.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 10,528 kB
  • sloc: ansic: 29,948; objc: 22,249; asm: 1,424; pascal: 1,373; makefile: 1,065; xml: 111
file content (30 lines) | stat: -rw-r--r-- 1,123 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
include $(CORE_DIR)/version.mk

INCFLAGS    := -I$(CORE_DIR)

SOURCES_C   := $(CORE_DIR)/Core/gb.c \
               $(CORE_DIR)/Core/sgb.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/camera.c \
               $(CORE_DIR)/Core/sm83_cpu.c \
               $(CORE_DIR)/Core/joypad.c \
               $(CORE_DIR)/Core/save_state.c \
               $(CORE_DIR)/Core/random.c \
               $(CORE_DIR)/Core/rumble.c \
               $(CORE_DIR)/libretro/agb_boot.c \
               $(CORE_DIR)/libretro/cgb_boot.c \
               $(CORE_DIR)/libretro/cgb0_boot.c \
               $(CORE_DIR)/libretro/mgb_boot.c \
               $(CORE_DIR)/libretro/dmg_boot.c \
               $(CORE_DIR)/libretro/sgb_boot.c \
               $(CORE_DIR)/libretro/sgb2_boot.c \
               $(CORE_DIR)/libretro/libretro.c

CFLAGS += -DGB_DISABLE_TIMEKEEPING -DGB_DISABLE_REWIND -DGB_DISABLE_DEBUGGER -DGB_DISABLE_CHEATS


SOURCES_CXX :=