mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-28 03:40:36 +00:00
34 lines
466 B
Makefile
34 lines
466 B
Makefile
MODULE := engines/dreamweb
|
|
|
|
MODULE_OBJS := \
|
|
backdrop.o \
|
|
console.o \
|
|
detection.o \
|
|
dreamweb.o \
|
|
keypad.o \
|
|
monitor.o \
|
|
mouse.o \
|
|
newplace.o \
|
|
object.o \
|
|
pathfind.o \
|
|
people.o \
|
|
print.o \
|
|
rain.o \
|
|
saveload.o \
|
|
sound.o \
|
|
sprite.o \
|
|
stubs.o \
|
|
talk.o \
|
|
titles.o \
|
|
use.o \
|
|
vgafades.o \
|
|
vgagrafx.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_DREAMWEB), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|