blob: 0979e44cb07a0c522e18655abd8c3db07f05a1bb (
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
|
###########################################################################
#
# tiny.mak
#
# Small driver-specific example makefile
# Use make TARGET=mess SUBTARGET=tiny to build
#
# As an example this makefile builds MESS with the three Colecovision
# drivers enabled only.
#
# Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
# Visit http://mamedev.org for licensing and usage restrictions.
#
###########################################################################
# include MESS core defines
include $(SRC)/mess/messcore.mak
#-------------------------------------------------
# Specify all the CPU cores necessary for the
# drivers referenced in tiny.c.
#-------------------------------------------------
CPUS += Z80
#-------------------------------------------------
# Specify all the sound cores necessary for the
# drivers referenced in tiny.c.
#-------------------------------------------------
SOUNDS += SN76496
#-------------------------------------------------
# specify available video cores
#-------------------------------------------------
VIDEOS += TMS9928A
#-------------------------------------------------
# specify available machine cores
#-------------------------------------------------
#-------------------------------------------------
# specify available bus cores
#-------------------------------------------------
BUSES += COLECO
#-------------------------------------------------
# This is the list of files that are necessary
# for building all of the drivers referenced
# in tiny.c
#-------------------------------------------------
DRVLIBS = \
$(MESS_DRIVERS)/coleco.o \
$(MESS_MACHINE)/coleco.o \
|