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

MODULE_OBJS := \
	combat.o \
	design.o \
	detection.o \
	entities.o \
	gui.o \
	menu.o \
	randomhat.o \
	script.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