mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-23 19:16:21 +00:00
36 lines
529 B
Makefile
36 lines
529 B
Makefile
MODULE := engines/trecision
|
|
|
|
MODULE_OBJS = \
|
|
console.o \
|
|
actor.o \
|
|
anim.o \
|
|
dialog.o \
|
|
fastfile.o \
|
|
graphics.o \
|
|
inventory.o \
|
|
logic.o \
|
|
metaengine.o \
|
|
pathfinding3d.o \
|
|
renderer3d.o \
|
|
resource.o \
|
|
sound.o \
|
|
saveload.o \
|
|
scheduler.o \
|
|
script.o \
|
|
struct.o \
|
|
text.o \
|
|
trecision.o \
|
|
utils.o \
|
|
video.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_TRECISION), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Detection objects
|
|
DETECT_OBJS += $(MODULE)/detection.o
|