mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 23:57:32 +00:00
28 lines
399 B
Makefile
28 lines
399 B
Makefile
MODULE := engines/mortevielle
|
|
|
|
MODULE_OBJS := \
|
|
actions.o \
|
|
asm.o \
|
|
detection.o \
|
|
dialogs.o \
|
|
graphics.o \
|
|
keyboard.o \
|
|
menu.o \
|
|
mor.o \
|
|
mortevielle.o \
|
|
mouse.o \
|
|
outtext.o \
|
|
ovd1.o \
|
|
saveload.o \
|
|
sound.o \
|
|
speech.o \
|
|
var_mor.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_MORTEVIELLE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|