blob: b78f3f16f343fc5ca2480411370d6d3e0c908c4a (
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
|
MODULE := engines/pink
MODULE_OBJS = \
pink.o \
console.o \
detection.o \
director.o \
sound.o \
file.o \
archive.o \
object.o \
module.o \
page.o \
inventory.o \
resource_mgr.o \
actions/action.o \
actors/actor.o \
actors/lead_actor.o \
# This module can be built as a plugin
ifeq ($(ENABLE_PLUMBERS), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|