forked from r-type/vice3.0-libretro
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Makefile.xcbm2
178 lines (171 loc) · 5.08 KB
/
Makefile.xcbm2
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
COMMONFLAGS += -D__XCBM2__
INCFLAGS += \
-I$(EMU)/sid \
-I$(EMU) \
-I$(EMU)/arch/shared \
-I$(EMU)/c64 \
-I$(EMU)/cbm2 \
-I$(EMU)/cbm2/cart \
-I$(EMU)/core \
-I$(EMU)/datasette \
-I$(EMU)/crtc \
-I$(EMU)/diag \
-I$(EMU)/drive \
-I$(EMU)/drive/iec \
-I$(EMU)/drive/ieee \
-I$(EMU)/drive/tcbm \
-I$(EMU)/fsdevice \
-I$(EMU)/imagecontents \
-I$(EMU)/joyport \
-I$(EMU)/lib/p64 \
-I$(EMU)/monitor \
-I$(EMU)/raster \
-I$(EMU)/resid \
-I$(EMU)/rs232drv \
-I$(EMU)/rtc \
-I$(EMU)/samplerdrv \
-I$(EMU)/tape \
-I$(EMU)/tapeport \
-I$(EMU)/userport \
-I$(EMU)/vdrive \
-I$(EMU)/vicii \
-I$(EMU)/video
SOURCES_CXX += \
$(EMU)/resid/dac.cc \
$(EMU)/resid/envelope.cc \
$(EMU)/resid/extfilt.cc \
$(EMU)/resid/filter8580new.cc \
$(EMU)/resid/pot.cc \
$(EMU)/resid/sid.cc \
$(EMU)/resid/version.cc \
$(EMU)/resid/voice.cc \
$(EMU)/resid/wave.cc \
$(EMU)/sid/resid.cc \
SOURCES_C += \
$(SOURCES_C_COMMON) \
$(EMU)/cbm2/cbm2.c \
$(EMU)/cbm2/cbm2acia1.c \
$(EMU)/cbm2/cbm2bus.c \
$(EMU)/cbm2/cbm2cia1.c \
$(EMU)/cbm2/cbm2-cmdline-options.c \
$(EMU)/cbm2/cbm2cpu.c \
$(EMU)/cbm2/cbm2datasette.c \
$(EMU)/cbm2/cbm2drive.c \
$(EMU)/cbm2/cbm2iec.c \
$(EMU)/cbm2/cbm2io.c \
$(EMU)/cbm2/cbm2mem.c \
$(EMU)/cbm2/cbm2memsnapshot.c \
$(EMU)/cbm2/cbm2model.c \
$(EMU)/cbm2/cbm2printer.c \
$(EMU)/cbm2/cbm2-resources.c \
$(EMU)/cbm2/cbm2rom.c \
$(EMU)/cbm2/cbm2romset.c \
$(EMU)/cbm2/cbm2sound.c \
$(EMU)/cbm2/cbm2-stubs.c \
$(EMU)/cbm2/cbm2tpi1.c \
$(EMU)/cbm2/cbm2tpi2.c \
$(EMU)/cbm2/cbm2video.c \
$(EMU)/cbm2/cart/cbm2cart.c \
$(EMU)/cbm2/cart/debugcart.c \
$(EMU)/crtc/crtc-cmdline-options.c \
$(EMU)/crtc/crtc-color.c \
$(EMU)/crtc/crtc-draw.c \
$(EMU)/crtc/crtc-mem.c \
$(EMU)/crtc/crtc-resources.c \
$(EMU)/crtc/crtc-snapshot.c \
$(EMU)/crtc/crtc.c \
$(EMU)/datasette/datasette.c \
$(EMU)/datasette/datasette-sound.c \
$(EMU)/drive/drive-check.c \
$(EMU)/drive/drive-cmdline-options.c \
$(EMU)/drive/drive-resources.c \
$(EMU)/drive/drive-snapshot.c \
$(EMU)/drive/drive-sound.c \
$(EMU)/drive/drive-writeprotect.c \
$(EMU)/drive/drive.c \
$(EMU)/drive/drivecpu.c \
$(EMU)/drive/drivecpu65c02.c \
$(EMU)/drive/driveimage.c \
$(EMU)/drive/drivemem.c \
$(EMU)/drive/driverom.c \
$(EMU)/drive/drivesync.c \
$(EMU)/drive/iec/cia1571d.c \
$(EMU)/drive/iec/cia1581d.c \
$(EMU)/drive/iec/cmdhd.c \
$(EMU)/drive/iec/fdd.c \
$(EMU)/drive/iec/glue1571.c \
$(EMU)/drive/iec/iec-cmdline-options.c \
$(EMU)/drive/iec/iec-resources.c \
$(EMU)/drive/iec/iec.c \
$(EMU)/drive/iec/iecrom.c \
$(EMU)/drive/iec/memiec.c \
$(EMU)/drive/iec/pc8477.c \
$(EMU)/drive/iec/via1d1541.c \
$(EMU)/drive/iec/via4000.c \
$(EMU)/drive/iec/wd1770.c \
$(EMU)/drive/iecieee/iecieee.c \
$(EMU)/drive/iecieee/via2d.c \
$(SOURCES_C_JOYPORT) \
$(EMU)/printerdrv/driver-select.c \
$(EMU)/printerdrv/drv-ascii.c \
$(EMU)/printerdrv/drv-raw.c \
$(EMU)/printerdrv/interface-serial.c \
$(EMU)/printerdrv/interface-userport.c \
$(EMU)/printerdrv/output-graphics.c \
$(EMU)/printerdrv/output-select.c \
$(EMU)/printerdrv/output-text.c \
$(EMU)/printerdrv/printer-serial.c \
$(EMU)/printerdrv/printer-userport.c \
$(EMU)/printerdrv/printer.c \
$(EMU)/serial/fsdrive.c \
$(EMU)/serial/serial-device.c \
$(EMU)/serial/serial-iec-bus.c \
$(EMU)/serial/serial-iec-device.c \
$(EMU)/serial/serial-iec-lib.c \
$(EMU)/serial/serial-iec.c \
$(EMU)/serial/serial-realdevice.c \
$(EMU)/serial/serial-trap.c \
$(EMU)/serial/serial.c \
$(EMU)/sid/catweaselmkiii.c \
$(EMU)/sid/fastsid.c \
$(EMU)/sid/hardsid.c \
$(EMU)/sid/parsid.c \
$(EMU)/sid/sid-cmdline-options.c \
$(EMU)/sid/sid-resources.c \
$(EMU)/sid/sid-snapshot.c \
$(EMU)/sid/sid.c \
$(EMU)/sid/ssi2001.c \
$(EMU)/tape/t64.c \
$(EMU)/tape/tap.c \
$(EMU)/tape/tape-internal.c \
$(EMU)/tape/tape-snapshot.c \
$(EMU)/tape/tape.c \
$(EMU)/tape/tapeimage.c \
$(EMU)/tapeport/cp-clockf83.c \
$(EMU)/tapeport/dtl-basic-dongle.c \
$(EMU)/tapeport/sense-dongle.c \
$(EMU)/tapeport/tapecart.c \
$(EMU)/tapeport/tapeport.c \
$(SOURCES_C_USERPORT) \
# arch
SOURCES_C += \
$(EMU)/arch/shared/socketdrv/socketdrv.c
# restorations
SOURCES_C += \
$(RETRODEP)/embedded.c \
$(RETRODEP)/embedded/cbm2embedded.c
# stubs
SOURCES_C += \
$(RETRODEP)/info.c \
$(RETRODEP)/gfxoutputdrv/gfxoutput.c \
$(RETRODEP)/monitor/asm6502.c \
$(RETRODEP)/monitor/monitor.c \
$(RETRODEP)/monitor/monitor_network.c \
$(RETRODEP)/monitor/mon_util.c \
$(RETRODEP)/printerdrv/drv-1520.c \
$(RETRODEP)/printerdrv/drv-mps803.c \
$(RETRODEP)/printerdrv/drv-nl10.c \
$(RETRODEP)/samplerdrv/file_drv.c \
$(RETRODEP)/samplerdrv/sampler.c \
$(RETRODEP)/video/video-render-1x2.c \
$(RETRODEP)/video/video-render-2x2.c \