mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
24 lines
356 B
Makefile
24 lines
356 B
Makefile
MODULE := engines/mortevielle
|
|
|
|
MODULE_OBJS := \
|
|
actions.o \
|
|
debugger.o \
|
|
detection.o \
|
|
dialogs.o \
|
|
graphics.o \
|
|
menu.o \
|
|
mortevielle.o \
|
|
mouse.o \
|
|
outtext.o \
|
|
saveload.o \
|
|
sound.o \
|
|
utils.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_MORTEVIELLE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|