23 lines
332 B
Makefile
Raw Normal View History

2016-06-03 21:58:25 +02:00
MODULE := engines/macventure
MODULE_OBJS := \
image.o \
2016-06-03 21:58:25 +02:00
detection.o \
2016-06-08 11:02:21 +02:00
gui.o \
2016-06-13 20:29:08 +02:00
object.o \
text.o \
2016-06-13 20:29:08 +02:00
world.o \
2016-06-18 00:27:35 +02:00
script.o \
macventure.o
2016-06-03 21:58:25 +02:00
MODULE_DIRS += \
engines/macventure
# This module can be built as a plugin
ifeq ($(ENABLE_MACVENTURE), DYNAMIC_PLUGIN)
2016-06-03 21:58:25 +02:00
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk