blob: adc921cdbb52a20e5381abd4c6725cabdd2bee3a (
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
|
###########################################################################
#
# 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
CPUS += MCS48
#-------------------------------------------------
# Specify all the sound cores necessary for the
# drivers referenced in tiny.c.
#-------------------------------------------------
SOUNDS += SN76496
#-------------------------------------------------
# This is the list of files that are necessary
# for building all of the drivers referenced
# in tiny.c
#-------------------------------------------------
DRVLIBS = \
$(EMUOBJ)/drivers/emudummy.o \
$(MESS_DRIVERS)/coleco.o \
$(MESS_MACHINE)/coleco.o \
|