mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
8d8b4dc50a
Several TODO's added. svn-id: r45298
29 lines
397 B
Makefile
29 lines
397 B
Makefile
MODULE := engines/draci
|
|
|
|
MODULE_OBJS := \
|
|
draci.o \
|
|
detection.o \
|
|
barchive.o \
|
|
script.o \
|
|
font.o \
|
|
saveload.o \
|
|
sound.o \
|
|
music.o \
|
|
sprite.o \
|
|
screen.o \
|
|
surface.o \
|
|
mouse.o \
|
|
game.o \
|
|
animation.o
|
|
|
|
MODULE_DIRS += \
|
|
engines/draci
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DRACI), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|