mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 11:20:56 +00:00
23 lines
332 B
Makefile
23 lines
332 B
Makefile
MODULE := engines/macventure
|
|
|
|
MODULE_OBJS := \
|
|
image.o \
|
|
detection.o \
|
|
gui.o \
|
|
object.o \
|
|
text.o \
|
|
world.o \
|
|
script.o \
|
|
macventure.o
|
|
|
|
MODULE_DIRS += \
|
|
engines/macventure
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_MACVENTURE), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|