https://github.com/scummvm/scummvm
Raw File
Tip revision: cd7e6cd31cd96c88689ba4769897c062e42e1353 authored by Thierry Crozat on 30 November 2017, 00:10:21 UTC
RELEASE: This is 2.1.0git
Tip revision: cd7e6cd
module.mk
MODULE := engines/toon

MODULE_OBJS := \
	anim.o \
	audio.o \
	character.o \
	console.o \
	conversation.o \
	detection.o \
	drew.o \
	flux.o \
	font.o \
	hotspot.o \
	movie.o \
	path.o \
	picture.o \
	resource.o \
	script.o \
	script_func.o \
	state.o \
	text.o \
	tools.o \
	toon.o

# This module can be built as a plugin
ifeq ($(ENABLE_TOON), DYNAMIC_PLUGIN)
PLUGIN := 1
endif

# Include common rules
include $(srcdir)/rules.mk
back to top