mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 23:57:32 +00:00
b8ec907ea0
svn-id: r41509
21 lines
303 B
Makefile
21 lines
303 B
Makefile
MODULE := engines/draci
|
|
|
|
MODULE_OBJS := \
|
|
draci.o \
|
|
detection.o \
|
|
barchive.o \
|
|
gpldisasm.o \
|
|
font.o \
|
|
sprite.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
|