mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
64211f3370
- Simplified room_0() - Some cleanup svn-id: r32404
18 lines
259 B
Makefile
18 lines
259 B
Makefile
MODULE := engines/drascula
|
|
|
|
MODULE_OBJS = \
|
|
animation.o \
|
|
detection.o \
|
|
drascula.o \
|
|
rooms.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
|