mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +00:00
2ccb5bb025
svn-id: r49703
28 lines
393 B
Makefile
28 lines
393 B
Makefile
MODULE := engines/drascula
|
|
|
|
MODULE_OBJS := \
|
|
actors.o \
|
|
animation.o \
|
|
console.o \
|
|
converse.o \
|
|
detection.o \
|
|
drascula.o \
|
|
graphics.o \
|
|
interface.o \
|
|
objects.o \
|
|
palette.o \
|
|
resource.o \
|
|
rooms.o \
|
|
saveload.o \
|
|
sound.o \
|
|
talk.o
|
|
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DRASCULA), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|