aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
blob: 1e8237c44900df5a853c722cdbb0256288647998 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
INCFLAGS := -I$(CORE_DIR) -I$(LIBRETRO_DIR)

ifeq ($(HAVE_GRIFFIN), 1)
SOURCES_C := $(CORE_DIR)/catsfc_griffin.c
SOURCES_C += $(CORE_DIR)/sa1.c \
				 $(CORE_DIR)/sa1cpu.c
else
SOURCES_C := \
	$(CORE_DIR)/apu.c \
	$(CORE_DIR)/c4.c \
	$(CORE_DIR)/c4emu.c \
	$(CORE_DIR)/cheats2.c \
	$(CORE_DIR)/cheats.c \
	$(CORE_DIR)/clip.c \
	$(CORE_DIR)/cpu.c \
	$(CORE_DIR)/cpuexec.c \
	$(CORE_DIR)/cpuops.c \
	$(CORE_DIR)/data.c\
	$(CORE_DIR)/dma.c \
	$(CORE_DIR)/dsp1.c \
	$(CORE_DIR)/fxdbg.c \
	$(CORE_DIR)/fxemu.c \
	$(CORE_DIR)/fxinst.c \
	$(CORE_DIR)/gfx.c \
	$(CORE_DIR)/globals.c \
	$(CORE_DIR)/memmap.c \
	$(CORE_DIR)/obc1.c \
	$(CORE_DIR)/ppu.c \
	$(CORE_DIR)/sa1.c \
	$(CORE_DIR)/sa1cpu.c \
	$(CORE_DIR)/sdd1.c \
	$(CORE_DIR)/sdd1emu.c \
	$(CORE_DIR)/seta010.c \
	$(CORE_DIR)/seta011.c \
	$(CORE_DIR)/seta018.c \
	$(CORE_DIR)/seta.c \
	$(CORE_DIR)/soundux.c \
	$(CORE_DIR)/spc700.c \
	$(CORE_DIR)/spc7110.c \
	$(CORE_DIR)/srtc.c \
	$(CORE_DIR)/tile.c
SOURCES_C += $(LIBRETRO_DIR)/libretro.c
endif