aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/module.mk
blob: 9f11e16db0a2e27a2cfabf76d1294755c6f18db8 (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
MODULE := engines/wage

MODULE_OBJS := \
	combat.o \
	debugger.o \
	design.o \
	detection.o \
	dialog.o \
	entities.o \
	gui.o \
	randomhat.o \
	saveload.o \
	script.o \
	sound.o \
	util.o \
	wage.o \
	world.o

MODULE_DIRS += \
	engines/wage

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

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