blob: 7b810183945721bfd55090d83b5fe01e942822f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
MODULE := engines/macventure
MODULE_OBJS := \
image.o \
detection.o \
object.o \
text.o \
world.o \
script.o \
macventure.o \
gui.o \
dialog.o \
controls.o \
prebuilt_dialogs.o \
windows.o \
sound.o \
saveload.o \
datafiles.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
|