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

MODULE_OBJS := \
	combat.o \
	debugger.o \
	design.o \
	detection.o \
	dialog.o \
	entities.o \
	gui.o \
	gui-console.o \
	macmenu.o \
	macwindow.o \
	macwindowmanager.o \
	randomhat.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