summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/video.mak
blob: fed2f29d056a4d86abe63a194544f461d299c841 (plain) (blame)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
###########################################################################
#
#   video.mak
#
#   Rules for building video cores
#
#   Copyright Nicola Salmoria and the MAME Team.
#   Visit http://mamedev.org for licensing and usage restrictions.
#
###########################################################################


VIDEOSRC = $(EMUSRC)/video
VIDEOOBJ = $(EMUOBJ)/video


#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter SEGA315_5124,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/315_5124.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter BUFSPRITE,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/bufsprite.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter CDP1861,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/cdp1861.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter CDP1862,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/cdp1862.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter CRT9007,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/crt9007.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter CRT9021,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/crt9021.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter CRT9212,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/crt9212.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter DL1416,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/dl1416.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter DM9368,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/dm9368.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter EF9340_1,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/ef9340_1.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter H63484,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/h63484.o   
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HD44102,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/hd44102.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HD44352,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/hd44352.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HD44780,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/hd44780.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HD61830,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/hd61830.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HD63484,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/hd63484.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HD66421,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/hd66421.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HUC6202,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/huc6202.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HUC6260,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/huc6260.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HUC6261,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/huc6261.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HUC6270,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/huc6270.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter HUC6272,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/huc6272.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter I8244,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/i8244.o    
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter I8275,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/i8275.o         \
			$(VIDEOOBJ)/i8275x.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter K053250,$(VIDEOS)),)			
VIDEOOBJS+= $(VIDEOOBJ)/k053250.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter M50458,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/m50458.o   
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter MB90082,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/mb90082.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter MC6845,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/mc6845.o   
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter MC6847,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/mc6847.o   
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter MSM6255,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/msm6255.o  
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter PC_CGA,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/pc_cga.o        \
			$(VIDEOOBJ)/cgapal.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter PC_VGA,$(VIDEOS)),)			
VIDEOOBJS+= $(VIDEOOBJ)/pc_vga.o   
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter POLY,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/poly.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter PSX,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/psx.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter RAMDAC,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/ramdac.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter S2636,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/s2636.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter SAA5050,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/saa5050.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------
ifneq ($(filter SED1330,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/sed1330.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter STVVDP,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/stvvdp1.o       \
			$(VIDEOOBJ)/stvvdp2.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter TLC34076,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/tlc34076.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter TMS34061,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/tms34061.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter TMS3556,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/tms3556.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter TMS9927,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/tms9927.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter TMS9928A,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/tms9928a.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter UPD3301,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/upd3301.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter UPD7220,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/upd7220.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter UPD7227,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/upd7227.o
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter V9938,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/v9938.o 
endif

#-------------------------------------------------
# 
#-------------------------------------------------

ifneq ($(filter VOODOO,$(VIDEOS)),)
VIDEOOBJS+= $(VIDEOOBJ)/voodoo.o
endif