aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/module.mk
blob: 4137581b7241e5de69a1c45203811316d7faef99 (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
31
32
33
34
35
MODULE := engines/mutationofjb

MODULE_OBJS := \
	commands/additemcommand.o \
	commands/changecommand.o \
	commands/command.o \
	commands/conditionalcommand.o \
	commands/endblockcommand.o \
	commands/gotocommand.o \
	commands/ifcommand.o \
	commands/ifitemcommand.o \
	commands/ifpiggycommand.o \
	commands/labelcommand.o \
	commands/removeallitemscommand.o \
	commands/removeitemcommand.o \
	commands/saycommand.o \
	commands/seqcommand.o \
	debug.o \
	detection.o \
	encryptedfile.o \
	game.o \
	gamedata.o \
	inventory.o \
	mutationofjb.o \
	room.o \
	script.o \
	util.o

# This module can be built as a plugin
ifeq ($(ENABLE_MUTATIONOFJB), DYNAMIC_PLUGIN)
PLUGIN := 1
endif

# Include common rules
include $(srcdir)/rules.mk