mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 07:39:08 +00:00
eef7417487
svn-id: r51360
29 lines
421 B
Makefile
29 lines
421 B
Makefile
MODULE := engines/teenagent
|
|
|
|
MODULE_OBJS := \
|
|
actor.o \
|
|
animation.o \
|
|
callbacks.o \
|
|
console.o \
|
|
detection.o \
|
|
dialog.o \
|
|
font.o \
|
|
inventory.o \
|
|
music.o \
|
|
objects.o \
|
|
pack.o \
|
|
resources.o \
|
|
scene.o \
|
|
segment.o \
|
|
surface.o \
|
|
surface_list.o \
|
|
teenagent.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_TEENAGENT), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|