mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-06 18:00:44 +00:00
38a8aa516e
svn-id: r31888
19 lines
270 B
Makefile
19 lines
270 B
Makefile
MODULE := engines/drascula
|
|
|
|
MODULE_OBJS = \
|
|
animation.o \
|
|
detection.o \
|
|
drascula.o \
|
|
rooms.o \
|
|
talk.o \
|
|
texts.o
|
|
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DRASCULA), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|