mame/src/mess/tiny.mak
2012-08-21 10:41:19 +00:00

49 lines
1.3 KiB
Makefile

###########################################################################
#
# 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 \